Skip to content

Commit

Permalink
fix test update_query_params error with Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Prodesire committed Apr 4, 2018
1 parent ee73c85 commit 35280a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

0 comments on commit 35280a2

Please sign in to comment.