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 ef30685 commit cb075d4Copy full SHA for cb075d4
tests/unit/test_util.py
@@ -14,4 +14,5 @@ def test_quote_string(self):
14
self.assertEqual(util.quote_string(10), 10)
15
self.assertEqual(util.quote_string("abc"), '"abc"')
16
self.assertEqual(util.quote_string(""), '""')
17
+ self.assertEqual(util.quote_string('"'), '"')
18
self.assertEqual(util.quote_string('a"a'), '"a\\"a"')
0 commit comments