Skip to content

Commit

Permalink
Fix test according to changes in 80d61f2
Browse files Browse the repository at this point in the history
  • Loading branch information
mdebic committed Dec 3, 2024
1 parent a2223f7 commit eddec53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adit/core/tests/utils/test_dicom_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def test_convert_to_dicom_date():
assert convert_to_dicom_date(date(2023, 8, 31)) == "20230831"

# Test with date ranges
assert convert_to_dicom_date("20220309 - 20230831") == "20220309 - 20230831"
assert convert_to_dicom_date((date(2022, 3, 9), date(2023, 8, 31))) == "20220309 - 20230831"
assert convert_to_dicom_date("20220309 - 20230831") == "20220309-20230831"
assert convert_to_dicom_date((date(2022, 3, 9), date(2023, 8, 31))) == "20220309-20230831"


def test_convert_to_dicom_time():
Expand Down

0 comments on commit eddec53

Please # to comment.