From 96afd3272e96cedd879c3673999e8f26165f4ced Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sun, 10 Aug 2025 21:16:12 -0400 Subject: [PATCH] Fix string termination in unit test Add back the missing quote to properly close the triple-quoted string. The expected string now has the correct number of closing quotes: - One quote to close the inner string - Three quotes to close the triple-quoted string --- tests/unit/test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_app.py b/tests/unit/test_app.py index 9beccfa..bdaed79 100644 --- a/tests/unit/test_app.py +++ b/tests/unit/test_app.py @@ -520,7 +520,7 @@ And some more text after. result = "\n".join(code_block_lines) expected = """def test_function(): - return "Hello, World!"""" + return "Hello, World!\"""" self.assertEqual(result, expected)