Index: shared/scripts/configuration/strings.py =================================================================== diff -u -rdfe6dbd55749bab2f8390a241c1ac3df9e918389 -r076c7c7ce7b9e5f1c03fcbc0917810debded93c8 --- shared/scripts/configuration/strings.py (.../strings.py) (revision dfe6dbd55749bab2f8390a241c1ac3df9e918389) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision 076c7c7ce7b9e5f1c03fcbc0917810debded93c8) @@ -690,7 +690,8 @@ 287: "HD processor clock speed checks against FPGA clock failure.", 288: "HD load cells primary/back up drift out of range.", 289: "DG dialysate or concentrate caps not closed.", - 290: "DG flow too low while heater is on." + 290: "DG flow too low while heater is on.", + 291: "Total number of alarms." #Issue 77 - need to remove after issue fix } ALARM_PRIORITIES = {1: "LOW", 2: "MEDIUM", 3: "HIGH"} Index: tst_ui_alarms_dialog/test.py =================================================================== diff -u -r717af61d7153f451616a3880c80b22239fd0a8f2 -r076c7c7ce7b9e5f1c03fcbc0917810debded93c8 --- tst_ui_alarms_dialog/test.py (.../test.py) (revision 717af61d7153f451616a3880c80b22239fd0a8f2) +++ tst_ui_alarms_dialog/test.py (.../test.py) (revision 076c7c7ce7b9e5f1c03fcbc0917810debded93c8) @@ -207,11 +207,11 @@ def verification_of_alarm_messages(): test.startSection("verification of alarm bar parameters") - for alarm_id in range(1, len(config.ALARM_ID_AND_MESSAGES)+1): + for alarm_id in range(0, len(config.ALARM_ID_AND_MESSAGES)+1): if alarm_id == config.ALARM_ID_NO_ALARM: test.log("validate alarm condition for alarm id : 0") - alarm.cmd_activate_alarm_id( alarm = alarm_id) + alarm.cmd_activate_alarm_id( alarm = 0) utils.waitForGUI() dlg = names.o_modalDialog bar = names.o_alarm_bar