Index: suite_leahi/tst_blood_prime/test.py =================================================================== diff -u -r62cc0c546a8dcad24ce124e06f01ee2187f78d41 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_blood_prime/test.py (.../test.py) (revision 62cc0c546a8dcad24ce124e06f01ee2187f78d41) +++ suite_leahi/tst_blood_prime/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -362,7 +362,7 @@ # change state to in progress td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_BLOOD_PRIME_STATE.value, + TDTreatmentStates.BLOOD_PRIME_STATE.value, 0, 0, 0, @@ -423,7 +423,7 @@ # change state to idle td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_BLOOD_PRIME_STATE.value, + TDTreatmentStates.BLOOD_PRIME_STATE.value, 0, 0, 0, @@ -555,7 +555,7 @@ test.log(f"Rejection reason text is {blood_priming_reject_notification_text}") td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_BLOOD_PRIME_STATE.value, 2, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.BLOOD_PRIME_STATE.value, 2, 0, 0, 0, 0, 0, 0, 0, 0 ) blood_prime_progress_paused_state = waitForObject( names.o_TreatmentBloodPrime_pausedNotification, 3000 @@ -593,7 +593,7 @@ ) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_BLOOD_PRIME_STATE.value, 1, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.BLOOD_PRIME_STATE.value, 1, 0, 0, 0, 0, 0, 0, 0, 0 ) td_simulator.td_blood_prime_progress(1000, 500, 0, 0) mouseClick( @@ -612,7 +612,7 @@ td_simulator.td_operation_mode(TDOpModes.MODE_STAN.value) td_simulator.td_operation_mode(TDOpModes.MODE_TREA.value, 0) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_BLOOD_PRIME_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.BLOOD_PRIME_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) test_blood_flow_rate() Index: suite_leahi/tst_blood_set_auto/test.py =================================================================== diff -u -rd4c6bf838a87529d60797460eb7242948f46f65b -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_blood_set_auto/test.py (.../test.py) (revision d4c6bf838a87529d60797460eb7242948f46f65b) +++ suite_leahi/tst_blood_set_auto/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -179,7 +179,7 @@ td_simulator.td_operation_mode(TDOpModes.MODE_TREA.value, 0) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) td_simulator.td_operation_mode(TDOpModes.MODE_POST.value, 0) td_simulator.td_patient_disconnect_confirm_response(1,0) Index: suite_leahi/tst_edit_parameters/test.py =================================================================== diff -u -re79975dc325f90441f70e114390d1adf4e7d58f9 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_edit_parameters/test.py (.../test.py) (revision e79975dc325f90441f70e114390d1adf4e7d58f9) +++ suite_leahi/tst_edit_parameters/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -182,7 +182,7 @@ def check_pressure_edit_maintreatment(): test.startSection("Pressure Edit") - td.td_tx_state( TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, + td.td_tx_state( TDTreatmentStates.DIALYSIS_STATE.value, 0 , 0 , 0 , Index: suite_leahi/tst_end_of_treatment/test.py =================================================================== diff -u -ra41aef5f49d9aed41b1d846a4c388459a7c5eed1 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_end_of_treatment/test.py (.../test.py) (revision a41aef5f49d9aed41b1d846a4c388459a7c5eed1) +++ suite_leahi/tst_end_of_treatment/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -163,15 +163,15 @@ mouseClick(waitForObject(names.o_createTreatmentRect_TouchRect)) td.td_operation_mode(TDOpModes.MODE_PRET.value) utility.verify_create_treatment_parameters() - change_treatmentstates(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_END_STATE.value) + change_treatmentstates(TDTreatmentStates.DIALYSIS_STATE.value) + change_treatmentstates(TDTreatmentStates.END_STATE.value) verify_stay_treatment_state() test.startSection("Check the UI behavior when user in end treatment state") mouseClick(waitForObject(names.o_treatmentCompleteButton_TreatmentCompleteButton)) mouseClick(waitForObject(names.o_confirmTouch_ConfirmButton)) test.verify(waitFor("'endTreatmentState == 6'", 5000), "Testing UI -> TD message end state") - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value) test.endSection() Index: suite_leahi/tst_feature_options/test.py =================================================================== diff -u -r296879f9309c86f2ac2852d3c9d76ebb4115f42c -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_feature_options/test.py (.../test.py) (revision 296879f9309c86f2ac2852d3c9d76ebb4115f42c) +++ suite_leahi/tst_feature_options/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -37,7 +37,7 @@ td_simulator.td_operation_mode(TDOpModes.MODE_TREA.value, 0) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) @@ -266,7 +266,7 @@ ) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) headerbar_container = waitForObject(names.o_headerBar_HeaderBar, 2000) heparin_bar = utility.findChildByText(headerbar_container, config.HEPARIN) @@ -319,7 +319,7 @@ ) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) headerbar_container = waitForObject(names.o_headerBar_HeaderBar, 2000) Index: suite_leahi/tst_fluid_bolus/test.py =================================================================== diff -u -r8db28688e2a5c59581798955c6127a63addf100b -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_fluid_bolus/test.py (.../test.py) (revision 8db28688e2a5c59581798955c6127a63addf100b) +++ suite_leahi/tst_fluid_bolus/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -44,7 +44,7 @@ test.verify(waitForObjectExists(names.o_standByScreen_MainHome), "In Standby") td_interface.td_operation_mode( TDOpModes.MODE_TREA.value, 0 ) td_interface.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , @@ -81,7 +81,7 @@ # change state to in progress td_interface.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , @@ -123,7 +123,7 @@ # change state to idle td_interface.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , Index: suite_leahi/tst_general_alarm_requirements_instruction/test.py =================================================================== diff -u -r0a30a581513ba4921a714c2153ad6729e6b2fa30 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_general_alarm_requirements_instruction/test.py (.../test.py) (revision 0a30a581513ba4921a714c2153ad6729e6b2fa30) +++ suite_leahi/tst_general_alarm_requirements_instruction/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -369,7 +369,7 @@ test.startSection("Verification Alarm Blood Stop Countdown") td_simulator.td_operation_mode(TDOpModes.MODE_TREA.value) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_PAUSED_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.PAUSED_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) alarm.cmd_activate_alarm_id( state=3, Index: suite_leahi/tst_heparin/test.py =================================================================== diff -u -rb6aa1adafbc0b279e012c904ecde7774fb0000ea -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_heparin/test.py (.../test.py) (revision b6aa1adafbc0b279e012c904ecde7774fb0000ea) +++ suite_leahi/tst_heparin/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -42,7 +42,7 @@ def verify_status_heparinStates(heparin_state,buttonState,status): test.startSection("Verify the heparin states in Heparin page") td.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , @@ -130,8 +130,8 @@ td.td_operation_mode(TDOpModes.MODE_PRET.value) td.td_blood_set_auto_load_response(vRejectionReason = 0) verify_create_treatment_parameters_Heparin_OFF() - change_treatmentstates(TDTreatmentStates.TREATMENT_PAUSED_STATE.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value) + change_treatmentstates(TDTreatmentStates.PAUSED_STATE.value) + change_treatmentstates(TDTreatmentStates.DIALYSIS_STATE.value) waitForObject(names.o_listView_Item,1000) heparin = utility.setObjectText(text=config.HEPARIN, obj=names.o_listView_Item) mouseClick(waitForObject(heparin)) @@ -144,8 +144,8 @@ td.td_operation_mode(TDOpModes.MODE_PRET.value) td.td_blood_set_auto_load_response(vRejectionReason = 0) utility.verify_create_treatment_parameters() - change_treatmentstates(TDTreatmentStates.TREATMENT_PAUSED_STATE.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value) + change_treatmentstates(TDTreatmentStates.PAUSED_STATE.value) + change_treatmentstates(TDTreatmentStates.DIALYSIS_STATE.value) waitForObject(names.o_listView_Item,1000) heparin = utility.setObjectText(text=config.HEPARIN, obj=names.o_listView_Item) mouseClick(waitForObject(heparin)) @@ -166,7 +166,7 @@ verify_status_heparinStates(2,config.RESUME,config.PAUSE) - td.td_tx_state(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, + td.td_tx_state(TDTreatmentStates.DIALYSIS_STATE.value, 0 , 0 , 0 , Index: suite_leahi/tst_isolated_uf/test.py =================================================================== diff -u -rdc3291714bae298f6ef6a879c0c38e1c22b23d09 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_isolated_uf/test.py (.../test.py) (revision dc3291714bae298f6ef6a879c0c38e1c22b23d09) +++ suite_leahi/tst_isolated_uf/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -88,7 +88,7 @@ repo = ScopedRejectionRepository(path=conf_path) startApplication(config.AUT_NAME) td.td_operation_mode(TDOpModes.MODE_STAN.value) - td.td_tx_state(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + td.td_tx_state(TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , Index: suite_leahi/tst_main_treatment/test.py =================================================================== diff -u -r14b4280d72f6b236cb2e2c3902e2dea5e10270be -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_main_treatment/test.py (.../test.py) (revision 14b4280d72f6b236cb2e2c3902e2dea5e10270be) +++ suite_leahi/tst_main_treatment/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -367,7 +367,7 @@ test.verify(waitForObjectExists(names.o_standByScreen_MainHome), "In Standby") td.td_operation_mode( TDOpModes.MODE_TREA.value, 0 ) - td.td_tx_state(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + td.td_tx_state(TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , @@ -419,7 +419,7 @@ td.td_treatment_time( tx_duration_s = 51 , tx_elapsed_s = 5 , tx_remaining_s = 6 ) - td.td_tx_state(TDTreatmentStates.TREATMENT_PAUSED_STATE.value , + td.td_tx_state(TDTreatmentStates.PAUSED_STATE.value , 0 , 0 , 0 , Index: suite_leahi/tst_patient_vitals/test.py =================================================================== diff -u -r30aa33698b5c5b0559841590c4bf0e87f9ccf820 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_patient_vitals/test.py (.../test.py) (revision 30aa33698b5c5b0559841590c4bf0e87f9ccf820) +++ suite_leahi/tst_patient_vitals/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -377,7 +377,7 @@ test.startSection("Verify the minimum values in the vitals popup") td.td_operation_mode(TDOpModes.MODE_TREA.value, 0) - td.td_tx_state(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + td.td_tx_state(TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 , Index: suite_leahi/tst_recirculate/test.py =================================================================== diff -u -r1aedea813d71404898a50c06f20db0fc49429cd5 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_recirculate/test.py (.../test.py) (revision 1aedea813d71404898a50c06f20db0fc49429cd5) +++ suite_leahi/tst_recirculate/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -115,7 +115,7 @@ def recirculate_set_up_screen(REJECT_TEXT): test.startSection("Verify Recirculate Set Up Screen") td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_RECIRC_STATE.value, + TDTreatmentStates.RECIRC_STATE.value, 0, 0, 0, @@ -146,7 +146,7 @@ def recirculate_in_progress_screen(REJECT_TEXT): test.startSection("Verify Recirculate In Progress Screen") td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_RECIRC_STATE.value, + TDTreatmentStates.RECIRC_STATE.value, 0, 0, 0, @@ -201,7 +201,7 @@ def reconnect_to_patient_screen(REJECT_TEXT): test.startSection("Verify Reconnect To Patient Screen") td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_RECIRC_STATE.value, + TDTreatmentStates.RECIRC_STATE.value, 0, 0, 0, @@ -250,7 +250,7 @@ startApplication(utility.aut("-q")) td_simulator.td_operation_mode(TDOpModes.MODE_TREA.value, 0) td_simulator.td_tx_state( - TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 + TDTreatmentStates.DIALYSIS_STATE.value, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) recirculate_set_up_screen(REJECT_TEXT) recirculate_in_progress_screen(REJECT_TEXT) Index: suite_leahi/tst_rinseback/test.py =================================================================== diff -u -rf05519ac142a13cbaf6f31c5a4dab88117461d00 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_rinseback/test.py (.../test.py) (revision f05519ac142a13cbaf6f31c5a4dab88117461d00) +++ suite_leahi/tst_rinseback/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -76,8 +76,8 @@ def verify_blood_return_setup_screen(): test.startSection("Verify Blood Return Setup Screen") td.td_operation_mode(TDOpModes.MODE_TREA.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_INIT_STATE.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_INIT_STATE.value) + change_treatmentstates(TDTreatmentStates.DIALYSIS_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_INIT_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_INIT_STATE.value) headerbar_container = waitForObject(names.o_headerBar_HeaderBar, 2000) blood_return_setup_screen_headerbar_title_text = utility.findChildByText( headerbar_container, config.BLOOD_RETURN_SETUP @@ -123,7 +123,7 @@ def verify_pressure_value(): test.startSection("Verify the pressure container values") - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_RUN_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_RUN_STATE.value) td.td_pressure(H2_arterial_pressure = -151, H14_venous_pressure = -12, limit_state = 0, @@ -202,7 +202,7 @@ rejectionReason = waitForObject(utility.setObjectText(text="[1] "+ REJECT_TEXT,obj =names.o_EndTreatmentRinseback_NotificationBar_NotificationBarSmall)) test.compare(rejectionReason.text,"[1] "+ REJECT_TEXT, "Rejection Reason text should be :" + str(rejectionReason.text)) td.td_rinseback_cmd_response(vRejectionReason = 0) - change_treatmentstates( TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value, + change_treatmentstates( TDTreatmentStates.RINSEBACK_STATE.value, TDTreaRinsebackStates.RINSEBACK_PAUSED_STATE.value) progressbar_color = waitForObject(names.o_EndTreatmentRinseback_targetVolumeProgress_ProgressCircle).color.name test.compare(progressbar_color, "#9b864e", "Progress bar should be'{}'".format(progressbar_color)) @@ -223,7 +223,7 @@ test.compare(timeoutValue,"01:24","Rinseback paused text should be'{}'".format(timeoutValue)) mouseClick(waitForObject(names.o_EndTreatmentRinseback_pauseResumeButton_TouchRect, 2000)) test.verify(waitFor( lambda: rinsebackrequest == 4, 3000), "Testing FW received Resume Rinseback request") - change_treatmentstates( TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value, + change_treatmentstates( TDTreatmentStates.RINSEBACK_STATE.value, TDTreaRinsebackStates.RINSEBACK_RUN_STATE.value) test.endSection() @@ -239,7 +239,7 @@ def verify_blood_return_complete(): test.startSection("Verify the Blood Return Complete State") - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_STATE.value) blood_return_complete = utility.get_object_from_names(names.o_Blood_Return_Complete_Title_Text) test.compare( blood_return_complete.text, @@ -250,14 +250,14 @@ mouseClick(end_treatment_button) test.verify(waitFor( lambda: rinsebackrequest == 8, 3000), "Testing FW received End Treatment value") - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_PAUSED_STATE.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_PAUSED_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_STATE.value) fluid_bolus_button = utility.get_object_from_names(names.o_Blood_Return_Complete_Fluid_Bolus_TouchRect) mouseClick(fluid_bolus_button) test.verify(waitFor( lambda: rinsebackrequest == 6, 3000), "Testing FW received Fluid Bolus value") - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_PAUSED_STATE.value) - change_treatmentstates(TDTreatmentStates.TREATMENT_RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_PAUSED_STATE.value) + change_treatmentstates(TDTreatmentStates.RINSEBACK_STATE.value,TDTreaRinsebackStates.RINSEBACK_STOP_STATE.value) recirculate_button = utility.get_object_from_names(names.o_Blood_Return_Complete_Recirculate_TouchRect) mouseClick(recirculate_button) test.verify(waitFor( lambda: rinsebackrequest == 7, 3000), "Testing FW received Recirculate value") Index: suite_leahi/tst_ultrafiltration/test.py =================================================================== diff -u -r4e2984559dbdc1dc708f2bdbc984ed03ea1fd8e1 -r535c5a49b6d814e8531fa43fc816f0658d1bafef --- suite_leahi/tst_ultrafiltration/test.py (.../test.py) (revision 4e2984559dbdc1dc708f2bdbc984ed03ea1fd8e1) +++ suite_leahi/tst_ultrafiltration/test.py (.../test.py) (revision 535c5a49b6d814e8531fa43fc816f0658d1bafef) @@ -126,7 +126,7 @@ # verify Standby screen test.verify(waitForObjectExists(names.o_standByScreen_MainHome), "In Standby") td.td_operation_mode(TDOpModes.MODE_TREA.value, 0) - td.td_tx_state(TDTreatmentStates.TREATMENT_DIALYSIS_STATE.value , + td.td_tx_state(TDTreatmentStates.DIALYSIS_STATE.value , 0 , 0 , 0 ,