summaryrefslogtreecommitdiff
path: root/tests/test_syntax/extensions/test_md_in_html.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_syntax/extensions/test_md_in_html.py')
-rw-r--r--tests/test_syntax/extensions/test_md_in_html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_syntax/extensions/test_md_in_html.py b/tests/test_syntax/extensions/test_md_in_html.py
index 6c13f11..3de49b0 100644
--- a/tests/test_syntax/extensions/test_md_in_html.py
+++ b/tests/test_syntax/extensions/test_md_in_html.py
@@ -32,7 +32,7 @@ class TestMarkdownInHTMLPostProcessor(TestCase):
def test_stash_to_string(self):
# There should be no known cases where this actually happens so we need to
- # forcefully pass an etree Element to the method to ensure proper behavior.
+ # forcefully pass an `etree` `Element` to the method to ensure proper behavior.
element = Element('div')
element.text = 'Foo bar.'
md = Markdown(extensions=['md_in_html'])
@@ -1208,7 +1208,7 @@ class TestMdInHTML(TestCase):
def load_tests(loader, tests, pattern):
- ''' Ensure TestHTMLBlocks doesn't get run twice by excluding it here. '''
+ ''' Ensure `TestHTMLBlocks` doesn't get run twice by excluding it here. '''
suite = TestSuite()
for test_class in [TestDefaultwMdInHTML, TestMdInHTML, TestMarkdownInHTMLPostProcessor]:
tests = loader.loadTestsFromTestCase(test_class)