diff options
| author | Larry O'Neill <larryoneill@gmail.com> | 2013-10-14 20:13:14 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-14 18:12:00 -0400 |
| commit | 83b9bfea44e23c5770fa14a8921914839929233b (patch) | |
| tree | 38039b835449a0dd8d0283286f7dbcf92ce5180a /tests/utils_tests/test_http.py | |
| parent | 42a67ec1cd8cbaffd87f0a7b34714f7d4a259cfb (diff) | |
Fixed #21266 -- Fixed E201,E202 pep8 warnings.
Diffstat (limited to 'tests/utils_tests/test_http.py')
| -rw-r--r-- | tests/utils_tests/test_http.py | 2 |
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 |
