Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 305a68e

Browse files
committed
Add the quote_plus call in the test.
1 parent bbe46d6 commit 305a68e

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Lib/test/test_urllib.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,7 @@ def test_default_quoting(self):
490490
result = urllib.parse.quote(partial_quote)
491491
self.assertEqual(expected, result,
492492
"using quote(): %r != %r" % (expected, result))
493+
result = urllib.parse.quote_plus(partial_quote)
493494
self.assertEqual(expected, result,
494495
"using quote_plus(): %r != %r" % (expected, result))
495496

0 commit comments

Comments
 (0)