Index: tst_ui_alarms_list/test.py =================================================================== diff -u -r2adb45a4e6c007e96da38093834e936105fa0f9e -r6bb43117bca2673c5de877f5b70b094da344418a --- tst_ui_alarms_list/test.py (.../test.py) (revision 2adb45a4e6c007e96da38093834e936105fa0f9e) +++ tst_ui_alarms_list/test.py (.../test.py) (revision 6bb43117bca2673c5de877f5b70b094da344418a) @@ -366,7 +366,7 @@ displayed """ test.startSection("Set undefined alarm and verify the respective message displayed") - ALARM_IDS = [900, 300, 499] + ALARM_IDS = [900, 350, 499] alarm_id_parent_list = {} for index, alarm_id in enumerate(ALARM_IDS): test.log("Setting alarm ID {}".format(alarm_id)) @@ -377,10 +377,11 @@ open_alarm_list_when_only_alarm_list_btn_is_available() utils.waitForGUI(1) for id in ALARM_IDS: - alarm_id = waitForObject(utility.get_alarm_id_obj(id)) + alarm_id = waitForObject(utility.get_alarm_id_obj(id)) # TODO: Check object being checked for id=900 alarm_id_parent = object.parent(alarm_id) alarm_id_parent_list[id] = alarm_id_parent expected_msg = "{} [{}]".format(config.UNDEFINED_ALARM_ID_MSG, str(id)) + print(f"EXPECTED: {expected_msg}") alarm_msg = waitForObject(utility.get_alarm_msg_obj(msg=expected_msg)) test.log("Verifying 'Alarm ID'") alarm_id = pyInt(alarm_id.text.toUtf8().constData())