We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41f52e7 commit 92d9967Copy full SHA for 92d9967
python2/koans/about_strings.py
@@ -56,8 +56,9 @@ def test_triple_quoted_strings_need_less_escaping(self):
56
b = """Hello "world"."""
57
self.assertEqual(__, (a == b))
58
59
- def but_quotes_at_the_end_of_a_triple_quoted_string_are_still_tricky(self):
+ def test_escaping_quotes_at_the_end_of_triple_quoted_string(self):
60
string = """Hello "world\""""
61
+ self.assertEqual(__, string)
62
63
def test_plus_concatenates_strings(self):
64
string = "Hello, " + "world"
0 commit comments