We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ced9c commit 6818558Copy full SHA for 6818558
1 file changed
python3/koans/about_strings.py
@@ -55,8 +55,9 @@ def test_triple_quoted_strings_need_less_escaping(self):
55
b = """Hello "world"."""
56
self.assertEqual(__, (a == b))
57
58
- def but_you_still_have_to_be_careful_at_the_end_of_a_triple_quoted_string(self):
+ def test_escaping_quotes_at_the_end_of_triple_quoted_string(self):
59
string = """Hello "world\""""
60
+ self.assertEqual(__, string)
61
62
def test_plus_concatenates_strings(self):
63
string = "Hello, " + "world"
0 commit comments