@@ -185,7 +185,7 @@ def build_house(name, surface=None):
185185 e = exc_info .value
186186 assert str (e ) == "name should be a non-empty string. " \
187187 "Error validating input [name=''] for function [build_house]. " \
188- "At least one validation function failed for value <''> . " \
188+ "At least one validation function failed for value '' . " \
189189 "Successes: [\" instance_of_%s\" ] / Failures: {'len(s) > 0': 'Returned False.'}." \
190190 "" % (repr (str ), )
191191
@@ -353,7 +353,7 @@ def test_readme_index_usage_composition():
353353 assert_valid ('surface' , surf , (x >= 0 ) & (x < 10000 ), is_multiple_of (100 ))
354354 e = exc_info .value
355355 assert str (e ) == "Error validating [surface=-1]. " \
356- "At least one validation function failed for value <-1> . " \
356+ "At least one validation function failed for value -1 . " \
357357 "Successes: [] / Failures: {'(x >= 0) & (x < 10000)': 'Returned False.', " \
358358 "'is_multiple_of_100': 'IsNotMultipleOf: Value should be a multiple of 100.'}."
359359
@@ -368,7 +368,7 @@ class InvalidSurface(ValidationError):
368368 e = exc_info .value
369369 assert str (e ) == "Surface should be between 0 and 10000 and be a multiple of 100, found -1. " \
370370 "Error validating [surface=-1]. " \
371- "At least one validation function failed for value <-1> . " \
371+ "At least one validation function failed for value -1 . " \
372372 "Successes: [] / Failures: {" \
373373 "'(x >= 0) & (x < 10000)': 'Returned False.', " \
374374 "'is_multiple_of_100': 'IsNotMultipleOf: Value should be a multiple of 100.'}."
@@ -380,7 +380,7 @@ class InvalidSurface(ValidationError):
380380 (is_multiple_of (100 ), 'Surface should be a multiple of 100' ))
381381 e = exc_info .value
382382 assert str (e ) == "Error validating [surface=-1]. " \
383- "At least one validation function failed for value <-1> . " \
383+ "At least one validation function failed for value -1 . " \
384384 "Successes: [] / Failures: {" \
385385 "'(x >= 0) & (x < 10000)': 'InvalidValue: Surface should be between 0 and 10000. " \
386386 "Returned False.', " \
@@ -400,7 +400,7 @@ class InvalidSurface(ValidationError):
400400 e = exc_info .value
401401 assert str (e ) == "Surface should be between 0 and 10000 and be a multiple of 100, found -1. " \
402402 "Error validating [surface=-1]. " \
403- "At least one validation function failed for value <-1> . " \
403+ "At least one validation function failed for value -1 . " \
404404 "Successes: [] / Failures: {" \
405405 "'(x >= 0) & (x < 10000)': 'InvalidValue: Surface should be between 0 and 10000. " \
406406 "Returned False.', " \
0 commit comments