Commit 305a68eb authored by Senthil Kumaran's avatar Senthil Kumaran

Add the quote_plus call in the test.

parent bbe46d63
......@@ -490,6 +490,7 @@ class QuotingTests(unittest.TestCase):
result = urllib.parse.quote(partial_quote)
self.assertEqual(expected, result,
"using quote(): %r != %r" % (expected, result))
result = urllib.parse.quote_plus(partial_quote)
self.assertEqual(expected, result,
"using quote_plus(): %r != %r" % (expected, result))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment