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.
tests/test_utils.py
1 parent 9ac9c1b commit 60bcc93Copy full SHA for 60bcc93
tests/test_utils.py
@@ -235,15 +235,6 @@ class UrlsRemoveQueryParamTests(TestCase):
235
"""
236
Tests the remove_query_param functionality.
237
238
- def test_valid_unicode_preserved(self):
239
- q = '/?q=%E6%9F%A5%E8%AF%A2'
240
- new_key = 'page'
241
- new_value = 2
242
- value = '%E6%9F%A5%E8%AF%A2'
243
-
244
- assert new_key in replace_query_param(q, new_key, new_value)
245
- assert value in replace_query_param(q, new_key, new_value)
246
247
def test_valid_unicode_removed(self):
248
q = '/?page=2345&q=%E6%9F%A5%E8%AF%A2'
249
key = 'page'
0 commit comments