Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain MARIE committed Apr 3, 2024
1 parent 159f1bd commit 76fb52e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/tslibs/test_strftime.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def test_format_datetime(self, strftime_fmt, res_fmt_old, res_fmt_new):
("%p", "%(ampm)s", "{ampm:s}"),
(
"%m-%d-%Y",
"%(month)02d-%(day)02d-%(year)d",
"{month:02d}-{day:02d}-{year:d}",
"%(month)02d-%(day)02d-%(year)04d",
"{month:02d}-{day:02d}-{year:04d}",
),
(
"%y %I:%M:%S%p (ms=%l us=%u ns=%n)",
Expand Down

0 comments on commit 76fb52e

Please sign in to comment.