summaryrefslogtreecommitdiff
path: root/tests/test_syntax
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-06-12 13:54:29 -0700
committerWaylan Limberg <waylan.limberg@icloud.com>2019-06-12 19:06:35 -0400
commitcb9cdc86575dab7afd3296c030e338cea3fc936e (patch)
tree750b9b3c8b1767ed89d2b7a095320d16d326563c /tests/test_syntax
parent929c5f4ea9f9d958884f9fef578b5d244c4575ea (diff)
downloadpython-markdown-cb9cdc86575dab7afd3296c030e338cea3fc936e.tar.gz
Use https:// links where available
Diffstat (limited to 'tests/test_syntax')
-rw-r--r--tests/test_syntax/blocks/test_headers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_syntax/blocks/test_headers.py b/tests/test_syntax/blocks/test_headers.py
index d9392e1..4afa4ec 100644
--- a/tests/test_syntax/blocks/test_headers.py
+++ b/tests/test_syntax/blocks/test_headers.py
@@ -109,7 +109,7 @@ class TestSetextHeaders(TestCase):
)
# TODO: fix this
- # see http://johnmacfarlane.net/babelmark2/?normalize=1&text=Paragraph%0AAn+H1%0A%3D%3D%3D%3D%3D
+ # see https://johnmacfarlane.net/babelmark2/?normalize=1&text=Paragraph%0AAn+H1%0A%3D%3D%3D%3D%3D
@unittest.skip('This is broken in Python-Markdown')
def test_p_followed_by_setext_h1(self):
self.assertMarkdownRenders(
@@ -129,7 +129,7 @@ class TestSetextHeaders(TestCase):
)
# TODO: fix this
- # see http://johnmacfarlane.net/babelmark2/?normalize=1&text=Paragraph%0AAn+H2%0A-----
+ # see https://johnmacfarlane.net/babelmark2/?normalize=1&text=Paragraph%0AAn+H2%0A-----
@unittest.skip('This is broken in Python-Markdown')
def test_p_followed_by_setext_h2(self):
self.assertMarkdownRenders(
@@ -585,7 +585,7 @@ class TestHashHeaders(TestCase):
# TODO: Possibly change the following behavior. While this follows the behavior
# of markdown.pl, it is rather uncommon and not nessecarily intuitive.
- # See: http://johnmacfarlane.net/babelmark2/?normalize=1&text=%23+This+is+an+H1+%23+
+ # See: https://johnmacfarlane.net/babelmark2/?normalize=1&text=%23+This+is+an+H1+%23+
def test_hash_h1_closed_trailing_space(self):
self.assertMarkdownRenders(
'# This is an H1 # ',