Skip to content

Commit

Permalink
PY3: zip bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ggventurini committed Apr 24, 2015
1 parent 7509b6e commit 56e27b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api/test_pz_solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def test_pz_solution():
assert i in r
assert r.has_key(i)

set(zip(*r.items())[0]) == {u'p0', u'p1', u'z0'}
set(zip(*r.items())[1]) == set(r.values())
set(list(zip(*r.items()))[0]) == {u'p0', u'p1', u'z0'}
set(list(zip(*r.items()))[1]) == set(r.values())

i = 0
for k, v in r:
Expand Down

0 comments on commit 56e27b6

Please sign in to comment.