commit | de9a3ee2d2bea4b862d783c7dbf12cf15aa763a5 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Fri Aug 09 10:42:44 2013 -0700 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Fri Aug 09 10:42:44 2013 -0700 |
tree | ad7472aa129efa0c8d33c98d8f48a0a31f09c55e | |
parent | b1895f6f786b8be3bbaedf0b17ef1337b71bcfa1 [diff] [blame] |
Get stuff working on py3k for real
diff --git a/tests/utils.py b/tests/utils.py index 9fe3531..60e7caa 100644 --- a/tests/utils.py +++ b/tests/utils.py
@@ -35,7 +35,7 @@ # We want to test only for a particular operation return [ - tuple(vector[1][f] for f in fields) + tuple(vector[1][f].encode("ascii") for f in fields) for vector in sorted(data[op].items(), key=lambda v: v[0]) ]