diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test_types_extras.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_types_extras.py b/tests/test_types_extras.py index 5cb1353..cda163b 100755 --- a/tests/test_types_extras.py +++ b/tests/test_types_extras.py @@ -179,8 +179,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 = list(zip(kk, vv)) ii.sort() |