summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/regressiontests/utils/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/utils/http.py b/tests/regressiontests/utils/http.py
index a6e7a8f2fc..16c7daa32c 100644
--- a/tests/regressiontests/utils/http.py
+++ b/tests/regressiontests/utils/http.py
@@ -119,6 +119,6 @@ class TestUtilsHttp(unittest.TestCase):
self.assertRaises(TypeError, http.int_to_base36, 3.141)
# more explicit output testing
- for n, b36 in [(0,'0'), (1,'1'), (42,'16'), (818469960,'django')]:
+ for n, b36 in [(0, '0'), (1, '1'), (42, '16'), (818469960, 'django')]:
self.assertEqual(http.int_to_base36(n), b36)
self.assertEqual(http.base36_to_int(b36), n)