@@ -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
0 commit comments