Skip to content

Commit

Permalink
Fix outdated tests
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Dec 6, 2015
1 parent 3aead9a commit 7614971
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rst_compiler.py
Expand Up @@ -223,7 +223,7 @@ def test_vimeo(self):
""" Test Vimeo iframe tag generation """
self.basic_test()
self.assertHTMLContains("iframe",
attributes={"src": ("//player.vimeo.com/"
attributes={"src": ("https://player.vimeo.com/"
"video/VID"),
"height": "400", "width": "600"})

Expand All @@ -237,7 +237,7 @@ def test_youtube(self):
""" Test Youtube iframe tag generation """
self.basic_test()
self.assertHTMLContains("iframe",
attributes={"src": ("//www.youtube.com/"
attributes={"src": ("https://www.youtube.com/"
"embed/YID?rel=0&hd=1&"
"wmode=transparent"),
"height": "400", "width": "600"})
Expand Down

0 comments on commit 7614971

Please sign in to comment.