summaryrefslogtreecommitdiff
path: root/docs/test_tools.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/test_tools.md')
-rw-r--r--docs/test_tools.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/test_tools.md b/docs/test_tools.md
index f3ed4e5..ba8a0a8 100644
--- a/docs/test_tools.md
+++ b/docs/test_tools.md
@@ -12,7 +12,7 @@ Therefore, the tools are importable from `markdown.test_tools`.
The test tools include two different `unittest.TestCase` subclasses:
`markdown.test_tools.TestCase` and `markdown.test_tools.LegacyTestCase`.
-## markdown.test_tools.TestCase
+## `markdown.test_tools.TestCase`
The `markdown.test_tools.TestCase` class is a `unittest.TestCase` subclass with
a few additional helpers to make testing Markdown output easier.
@@ -66,7 +66,7 @@ class TestHr(TestCase):
)
```
-## markdown.test_tools.LegacyTestCase
+## `markdown.test_tools.LegacyTestCase`
In the past Python-Markdown exclusively used file-based tests. Many of those
tests still exist in Python-Markdown's test suite, including the test files from