mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
Add the quote_plus call in the test.
This commit is contained in:
parent
bbe46d63ee
commit
305a68eb4a
1 changed files with 1 additions and 0 deletions
|
|
@ -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))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue