Update test_formatters.py

Bad cell ref [0, 2] -> [0, 3]
This commit is contained in:
vinraspa 2021-10-02 22:47:42 +02:00 committed by GitHub
parent f46b724920
commit 9b2275a2da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class TestDateFormat:
assert r[0, 1].strftime("%H:%M:%S") == "11:11:11"
assert isinstance(r[0, 2], datetime.date) is True
assert r[0, 2].strftime("%d/%m/%y %H:%M:%S") == "25/12/14 11:11:11"
assert isinstance(r[0, 2], datetime.timedelta)
assert isinstance(r[0, 3], datetime.timedelta)
assert r[0, 1].strftime("%H:%M:%S") == "3:30:20"
os.unlink(excel_filename)