Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r73e4ff8878dd774e5368117dd90f1d1fcd035e40 -r1e3e67b3416e26241ca28c9c0c92b58cec927d52 --- shared/scripts/configuration/utility.py (.../utility.py) (revision 73e4ff8878dd774e5368117dd90f1d1fcd035e40) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 1e3e67b3416e26241ca28c9c0c92b58cec927d52) @@ -436,11 +436,9 @@ continue # arterial blood pressure low limit should be lower than the high limit by atleast 30mmHg if arterial_min == arterial_max - config.BUFFER_LOW_AND_HIGH_LIMITS: - test.compare(low_handler_parent.minValue, arterial_min, - "Arterial range minimum value cannot be moved beyond {}".format(arterial_min)) + test.compare(low_handler_parent.minValue, arterial_min, "Arterial range minimum value cannot be moved beyond {}".format(arterial_min)) else: - test.compare(arterial_min, art_low, - "Actual Arterial range minimum value: {} is equal to Expected value: {}".format(arterial_min, art_low)) + test.compare(arterial_min, art_low, "Actual Arterial range minimum value: {} is equal to Expected value: {}".format(arterial_min, art_low)) test.endSection()