Skip to content

Commit

Permalink
Fix: one more test case
Browse files Browse the repository at this point in the history
  • Loading branch information
lwasser committed Mar 9, 2024
1 parent 0eb0a1d commit d61fc89
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/unit/test_utils_clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ def test_clean_name(input_name, expected_output):
"input_dict, expected_output",
[
# Test case where key starts with "date_accepted"
(
{"date_accepted_(month-day-year)": "2024-03-07"},
{"date_accepted": "2024-03-07"},
),
(
{"date_accepted_(month/day/year)": "2024/03/07"},
{"date_accepted": "2024/03/07"},
Expand Down

0 comments on commit d61fc89

Please sign in to comment.