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 b4983f8 commit 159f1bd
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 @@ -62,8 +62,8 @@ class TestConvertStrftimeFormat:
("%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}",
),
(
"20%y-%m-%d__foo__%I:%M:%S%p",
Expand Down

0 comments on commit 159f1bd

Please sign in to comment.