Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rf634cbc70c2fbde00cb69d5f5da361c28d723d09 -rf9cde78342e2769d5a6429eef23dd08ac64dbe2c --- shared/scripts/configuration/utility.py (.../utility.py) (revision f634cbc70c2fbde00cb69d5f5da361c28d723d09) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision f9cde78342e2769d5a6429eef23dd08ac64dbe2c) @@ -267,11 +267,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()