Skip to content

Commit 9b2275a

Browse files
authored
Update test_formatters.py
Bad cell ref [0, 2] -> [0, 3]
1 parent f46b724 commit 9b2275a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_formatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_writing_date_format(self):
5656
assert r[0, 1].strftime("%H:%M:%S") == "11:11:11"
5757
assert isinstance(r[0, 2], datetime.date) is True
5858
assert r[0, 2].strftime("%d/%m/%y %H:%M:%S") == "25/12/14 11:11:11"
59-
assert isinstance(r[0, 2], datetime.timedelta)
59+
assert isinstance(r[0, 3], datetime.timedelta)
6060
assert r[0, 1].strftime("%H:%M:%S") == "3:30:20"
6161
os.unlink(excel_filename)
6262

0 commit comments

Comments
 (0)