Skip to content

Commit 8946f9c

Browse files
committed
py2.7 compat
1 parent d4bed0c commit 8946f9c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

test/test_term.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,8 @@ def test_total_order(self):
118118
'2001-01-02T01:00:01-01:30'
119119
]
120120
]
121-
l2 = l1.copy()
121+
l2 = list(l1)
122122
random.shuffle(l2)
123-
for d in l1:
124-
print(d)
125-
print()
126-
for d in sorted(l2):
127-
print(d)
128123
self.assertListEqual(l1, sorted(l2))
129124

130125

0 commit comments

Comments
 (0)