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
This commit is contained in:
Russell Ballestrini 2025-08-10 21:16:12 -04:00
parent 96ee7e8d0c
commit 96afd3272e

View file

@ -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)