Skip to content

Commit

Permalink
add unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisTrakos committed Apr 15, 2024
1 parent 9ff3611 commit 2744957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,9 +768,9 @@ def test_patient_number_anonymized(self: Tests) -> None:
original_patient_number = self.get_patient_number(original_xls_file)
anonymized_patient_number = self.get_patient_number(anonymized_xls_file)

if original_patient_number == "123-456789":
if original_patient_number != "123-456789":
raise AssertionError
if anonymized_patient_number == "456-901256":
if anonymized_patient_number != "456-901256":
raise AssertionError


Expand Down

0 comments on commit 2744957

Please sign in to comment.