Skip to content

Commit 022f527

Browse files
committed
tidy
1 parent f4a57b9 commit 022f527

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

backend/tests/test_immunization_pre_validator.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,6 @@ def test_pre_validate_missing_valueCodeableConcept3(self):
726726
self.validator.validate(valid_json_data)
727727
except Exception as error:
728728
self.fail(f"Validation unexpectedly raised an exception: {error}")
729-
print("Validation passed successfully with valid data.")
730729

731730

732731
def test_pre_validate_extension_length(self):
@@ -1124,7 +1123,6 @@ def test_pre_validate_site_coding_display(self):
11241123

11251124
def test_pre_validate_route_coding(self):
11261125
"""Test pre_validate_route_coding accepts valid values and rejects invalid values"""
1127-
print("Testing pre_validate_route_coding")
11281126
ValidatorModelTests.test_unique_list(
11291127
self,
11301128
field_location="route.coding",
@@ -1138,13 +1136,11 @@ def test_pre_validate_route_coding(self):
11381136

11391137
def test_pre_validate_route_coding_code(self):
11401138
"""Test pre_validate_route_coding_code accepts valid values and rejects invalid values"""
1141-
print("Testing pre_validate_route_coding_code")
11421139
field_location = "route.coding[?(@.system=='http://snomed.info/sct')].code"
11431140
ValidatorModelTests.test_string_value(self, field_location, valid_strings_to_test=["dummy"])
11441141

11451142
def test_pre_validate_route_coding_display(self):
11461143
"""Test pre_validate_route_coding_display accepts valid values and rejects invalid values"""
1147-
print("Testing pre_validate_route_coding_display")
11481144
field_location = "route.coding[?(@.system=='http://snomed.info/sct')].display"
11491145
ValidatorModelTests.test_string_value(self, field_location, valid_strings_to_test=["dummy"])
11501146

backend/tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_get_vaccine_type(self):
6464
self.mock_redis_client.hget.return_value = 'RSV'
6565
# TEST VALID DATA
6666
valid_json_data = load_json_data(filename=f"completed_rsv_immunization_event.json")
67-
# print(valid_json_data)
67+
6868
vac_type = get_vaccine_type(valid_json_data)
6969
self.assertEqual(vac_type, "RSV")
7070

0 commit comments

Comments
 (0)