aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/tests/unit/wqflask/test_markdown_routes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/tests/unit/wqflask/test_markdown_routes.py b/wqflask/tests/unit/wqflask/test_markdown_routes.py
index 3de14276..3adf63e5 100644
--- a/wqflask/tests/unit/wqflask/test_markdown_routes.py
+++ b/wqflask/tests/unit/wqflask/test_markdown_routes.py
@@ -38,8 +38,8 @@ class TestMarkdownRoutesFunctions(unittest.TestCase):
"/genenetwork/genenetwork2/"
"wqflask/wqflask/static/"
"glossary.md")
- self.assertEqual("<h1>Content</h1>\n",
- markdown_content)
+ self.assertRegexpMatches(markdown_content,
+ "Glossary of Terms and Features")
@mock.patch('wqflask.markdown_routes.requests.get')
def test_render_markdown_when_fetching_remotely(self, requests_mock):