Skip to content

Commit 86c3ff4

Browse files
committed
Fix timestamp test
1 parent fd1e8ca commit 86c3ff4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class TestTimestampConverter:
1111
def test_datetimes(self):
1212
timestamp = datetime(2010, 6, 1, 12, 15, 30)
13-
assert '2010-06-01T12:15:30' == timestamp_parameter(timestamp)
13+
assert '2010-06-01T12:15:30Z' == timestamp_parameter(timestamp)
1414

1515
def test_valid_datestring(self):
1616
testvals = (

0 commit comments

Comments
 (0)