Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit 2719439

Browse files
committed
Fix qgrid/tests/test_grid.py::test_edit_date
Before this change the test fails with the message: FAILED qgrid/tests/test_grid.py::test_edit_date - AssertionError: assert '2013-01-02T00:00:00.000' == '2013-01-02T00:00:00.000Z' After this change the test passes.
1 parent 343e990 commit 2719439

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qgrid/tests/test_grid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ def test_edit_date():
6666
"Date",
6767
3,
6868
pd.Timestamp("2013-01-02 00:00:00"),
69-
"2013-01-02T00:00:00.000Z",
69+
"2013-01-02T00:00:00.000",
7070
pd.Timestamp("2013-01-16 00:00:00"),
71-
"2013-01-16T00:00:00.000Z",
71+
"2013-01-16T00:00:00.000",
7272
)
7373

7474

0 commit comments

Comments
 (0)