Skip to content

Commit 17cc564

Browse files
committed
Fix breaking test
The following command now passes, as do all tests in this module: pytest -k 'test_offset or test_decimal' tests/test_fetch.py
1 parent 115c8bd commit 17cc564

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ class DecimalPrimaryKey(dj.Lookup):
307307
definition = """
308308
id : decimal(4,3)
309309
"""
310-
contents = zip((0.1, 0.25, 3.99))
310+
contents = list(zip((0.1, 0.25, 3.99)))
311311

312312

313313
class IndexRich(dj.Manual):

0 commit comments

Comments
 (0)