Index: shared/scripts/configuration/strings.py =================================================================== diff -u -r30ec9a7782f54b778ec45a19d86462bf9f15016e -ree44469d9fc90afbd5769b8cd5f4d92b3ae2102e --- shared/scripts/configuration/strings.py (.../strings.py) (revision 30ec9a7782f54b778ec45a19d86462bf9f15016e) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision ee44469d9fc90afbd5769b8cd5f4d92b3ae2102e) @@ -302,7 +302,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 -rca7665640ec92f02c12b12d15efaad6229a18304 -ree44469d9fc90afbd5769b8cd5f4d92b3ae2102e --- tst_ui_alarms_dialog/test.py (.../test.py) (revision ca7665640ec92f02c12b12d15efaad6229a18304) +++ tst_ui_alarms_dialog/test.py (.../test.py) (revision ee44469d9fc90afbd5769b8cd5f4d92b3ae2102e) @@ -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