Skip to content

Commit

Permalink
TIMESTAMPTZ
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolytics committed Dec 21, 2024
1 parent 6d60fb6 commit e6e2c52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/window/test_tumbling.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_closed_results_found(self):

conn.sql('''
CREATE TABLE test_table (
timestamp TIMESTAMP,
timestamp TIMESTAMPTZ,
id VARCHAR
)
''')
Expand Down Expand Up @@ -79,7 +79,7 @@ def test_closed_results_found(self):
rows = tw.collect_closed()
self.assertEqual(
[
{'timestamp': 1704049200, 'id': 'test_1'}
{'timestamp': 1704067200000, 'id': 'test_1'}
],
rows,
)
Expand Down

0 comments on commit e6e2c52

Please sign in to comment.