Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2018-02-26 00:59:27 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2018-02-26 00:59:27 +0300
commit9fa254b898cfc8d21128b6ac9d6056960329ba4d (patch)
tree80e54f6b27b86676a99aa437995c8dd49b7378f5
parent74d027a3abb2d72306d7d9e8ff2d150ebe576960 (diff)
Use https:// for media-embed tests
I overlooked this when reviewing #6418 since it is excluded on travis because of the @nophantomjs tag (so it didn't fail). But since we block http:// embeds now, we need to use https:// for the tests.
-rw-r--r--features/desktop/media-embed.feature4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/desktop/media-embed.feature b/features/desktop/media-embed.feature
index 07efef81d..6df7da211 100644
--- a/features/desktop/media-embed.feature
+++ b/features/desktop/media-embed.feature
@@ -13,10 +13,10 @@ Feature: oembed
And I sign in as "alice@alice.alice"
Scenario: Post a video link
- When I click the publisher and post "[title](http://example.com/file.ogv)"
+ When I click the publisher and post "[title](https://example.com/file.ogv)"
Then I should see a HTML5 video player
Scenario: Post an audio link
- When I click the publisher and post "[title](http://example.com/file.ogg)"
+ When I click the publisher and post "[title](https://example.com/file.ogg)"
Then I should see a HTML5 audio player