summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_http.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils_tests/test_http.py')
-rw-r--r--tests/utils_tests/test_http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/test_http.py b/tests/utils_tests/test_http.py
index f68ac33503..9f6bcce830 100644
--- a/tests/utils_tests/test_http.py
+++ b/tests/utils_tests/test_http.py
@@ -36,7 +36,7 @@ class TestUtilsHttp(unittest.TestCase):
self.assertEqual(result, 'a=1&b=2&c=3')
# A dictionary
- result = http.urlencode({ 'a': 1, 'b': 2, 'c': 3})
+ result = http.urlencode({'a': 1, 'b': 2, 'c': 3})
acceptable_results = [
# Need to allow all of these as dictionaries have to be treated as
# unordered