Skip to content

Commit 4388095

Browse files
author
reasto
committed
Fix test for python 3
1 parent ca666e5 commit 4388095

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/tickstore/test_ts_write.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,6 @@ def test_pandas_to_bucket(tickstore_lib):
101101
assert bucket[START] == dt(2012, 9, 8, 17, 6, 11, tzinfo=mktz('UTC'))
102102
assert bucket[END] == dt(2012, 11, 8, 17, 6, 11, tzinfo=mktz('UTC'))
103103
assert bucket[COUNT] == 4
104-
assert bucket[COLUMNS].keys() == ['near']
104+
assert len(bucket[COLUMNS]) == 1
105+
assert 'near' in bucket[COLUMNS]
105106

0 commit comments

Comments
 (0)