From 310efc114b67ffcddd1c110dcd0b645fccad4cdf Mon Sep 17 00:00:00 2001 From: James Addison Date: Wed, 25 Jan 2023 22:09:07 +0000 Subject: [PATCH] Fixup: update expectation in Markdown test --- tests/test_description.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test_description.py b/tests/test_description.py index ecc6b9776..44223899a 100644 --- a/tests/test_description.py +++ b/tests/test_description.py @@ -41,8 +41,11 @@ MARKDOWN_DOCSTRING = """

an example docstring

indented

hash style header

-
[{
"alpha": 1,
"beta": "this is a string"
}]
-


""" +

json +[{ + "alpha": 1, + "beta": "this is a string" +}]

""" class TestViewNamesAndDescriptions(TestCase):