Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r2545702a9c0d155e36e6243ccad37b68d71c769e -r1cfccd279dba94f4d844e875964b50b91f4ac18d --- shared/scripts/configuration/utility.py (.../utility.py) (revision 2545702a9c0d155e36e6243ccad37b68d71c769e) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 1cfccd279dba94f4d844e875964b50b91f4ac18d) @@ -115,10 +115,6 @@ def keypad_input(key_value): names.o_keypad_input["text"] = key_value return names.o_keypad_input - -def vitals_interval_obj(interval): - names.o_time_interval_obj["text"] = interval - return names.o_time_interval_obj def msg(string): """ Index: shared/scripts/names.py =================================================================== diff -u -rb5754a889c248c804e4b9f1b717addb88927ed0f -r1cfccd279dba94f4d844e875964b50b91f4ac18d --- shared/scripts/names.py (.../names.py) (revision b5754a889c248c804e4b9f1b717addb88927ed0f) +++ shared/scripts/names.py (.../names.py) (revision 1cfccd279dba94f4d844e875964b50b91f4ac18d) @@ -82,7 +82,6 @@ o_back_space_key = {"container": o_Gui_MainView, "id": "_backspaceKeyIcon", "source": "qrc:/plugins/QtQuick/VirtualKeyboard/Styles/denali/images/iBackspace.svg", "type": "Image", "unnamed": 1, "visible": True} #vital time interval -o_time_interval_obj = {"container": o_treatmentStack_treatmentHome_TreatmentHome, "type": "Text", "unnamed": 1, "visible": True} o_time_interval = {"container": o_treatmentStack_treatmentHome_TreatmentHome, "id": "_text", "type": "Text", "unnamed": 1, "visible": True} #create_custom treatment testcase o_PreTreatmentBase_confirmButton_TouchRect = {"container": o_PreTreatmentCreateStack_PreTreatmentBase_TreatmentFlowBase, "text": "CONFIRM", "type": "Text", "unnamed": 1, "visible": True} Index: tst_main_treatment_vitals/test.py =================================================================== diff -u -rb5754a889c248c804e4b9f1b717addb88927ed0f -r1cfccd279dba94f4d844e875964b50b91f4ac18d --- tst_main_treatment_vitals/test.py (.../test.py) (revision b5754a889c248c804e4b9f1b717addb88927ed0f) +++ tst_main_treatment_vitals/test.py (.../test.py) (revision 1cfccd279dba94f4d844e875964b50b91f4ac18d) @@ -362,8 +362,7 @@ """ Method to accept treatment response. """ - treatment_status = hd_simulator.cmd_send_treatment_parameter_manual_validation_response([ - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]) + treatment_status = hd_simulator.cmd_send_treatment_parameter_manual_validation_response([1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]) test.compare(treatment_status, True, "custom treatment should be accepted") def verify_create_custom_treatment_parameter():