From a9314d7dd97cf743915017d24540dd3d3a315fd3 Mon Sep 17 00:00:00 2001 From: Julen Landa Alustiza Date: Jun 25 2019 05:47:45 +0000 Subject: fix typo on text2markdown test --- diff --git a/tests/test_pagure_lib.py b/tests/test_pagure_lib.py index 790d234..b1b625a 100644 --- a/tests/test_pagure_lib.py +++ b/tests/test_pagure_lib.py @@ -4075,7 +4075,7 @@ class PagureLibtests(tests.Modeltests): @patch("flask.g") @patch("pagure.lib.notify.send_email", MagicMock(return_value=True)) def test_text2markdown(self, g, req, reqget): - """ Test the test2markdown method in pagure.lib.query. """ + """ Test the text2markdown method in pagure.lib.query. """ pagure.config.config["TESTING"] = True pagure.config.config["SERVER_NAME"] = "localhost.localdomain" @@ -4367,7 +4367,7 @@ class PagureLibtests(tests.Modeltests): self.assertEqual(html, expected[idx]) def test_text2markdown_exception(self): - """ Test the test2markdown method in pagure.lib.query. """ + """ Test the text2markdown method in pagure.lib.query. """ text = "test#1 bazinga!" expected_html = "test#1 bazinga!" @@ -4376,7 +4376,7 @@ class PagureLibtests(tests.Modeltests): self.assertEqual(html, expected_html) def test_text2markdown_empty_string(self): - """ Test the test2markdown method in pagure.lib.query. """ + """ Test the text2markdown method in pagure.lib.query. """ text = "" expected_html = ""