summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/test_types_extras.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_types_extras.py b/tests/test_types_extras.py
index e1db2c2..c2603f7 100755
--- a/tests/test_types_extras.py
+++ b/tests/test_types_extras.py
@@ -178,8 +178,8 @@ class HstoreTestCase(ConnectingTestCase):
m = re.match(br'hstore\(ARRAY\[([^\]]+)\], ARRAY\[([^\]]+)\]\)', q)
self.assert_(m, repr(q))
- kk = m.group(1).split(b", ")
- vv = m.group(2).split(b", ")
+ kk = m.group(1).split(b",")
+ vv = m.group(2).split(b",")
ii = zip(kk, vv)
ii.sort()