fix test update_query_params error with Python 3.5

This commit is contained in:
Prodesire 2018-04-04 21:56:13 +08:00
parent ee73c85bfb
commit 35280a2416
1 changed files with 1 additions and 1 deletions

View File

@ -59,4 +59,4 @@ def test_update_query_params():
assert update_query_params(base, {'foo': 1}) == base + '?foo=1'
assert update_query_params(base + '?foo=1', {'foo': 2}) == base + '?foo=2'
assert update_query_params(base + '?foo=1', {'foo': 2, 'bar': 3}) in \
(base + '?foo=2&bar=3', base + '?foo=2&bar=3')
(base + '?foo=2&bar=3', base + '?bar=3&foo=2')