Index: shared/scripts/configuration/config.py =================================================================== diff -u -r4c7da7b76580595a20681353543bc99573f94f69 -r1fec37fb75e89566710219a770a8219ab33de5bd --- shared/scripts/configuration/config.py (.../config.py) (revision 4c7da7b76580595a20681353543bc99573f94f69) +++ shared/scripts/configuration/config.py (.../config.py) (revision 1fec37fb75e89566710219a770a8219ab33de5bd) @@ -59,6 +59,7 @@ SYSTEM_SELF_TEST_TITLE = "System Self Test" FILTER_FLUSH_TITLE = "Filter Flush" MAXIMUM_COUNTDOWN_TIME = 300 +COUNT_DOWN_TIME_100 = 100 MINIMUM_COUNTDOWN_TIME = 0 ENABLED = True DISABLED = False Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rf027e8ea656a56912e18c4879eeae24f03c411a7 -r1fec37fb75e89566710219a770a8219ab33de5bd --- shared/scripts/configuration/utility.py (.../utility.py) (revision f027e8ea656a56912e18c4879eeae24f03c411a7) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 1fec37fb75e89566710219a770a8219ab33de5bd) @@ -128,7 +128,7 @@ @param screen_title - (str) current title of the screen """ test.startSection("Verify the count down time in application") - for count_down in range(MAXIMUM_COUNTDOWN_TIME, MINIMUM_COUNTDOWN_TIME-1, -1): + for count_down in range(COUNT_DOWN_TIME_100, MINIMUM_COUNTDOWN_TIME-1, -1): if screen_title == BEGIN_PRIME_TITLE: hd_simulator.cmd_send_pre_treatment_self_test_dry_progress_data(300, count_down) elif screen_title == PRIMING_TITLE: Index: tst_pre_treatment_priming/test.py =================================================================== diff -u -rf027e8ea656a56912e18c4879eeae24f03c411a7 -r1fec37fb75e89566710219a770a8219ab33de5bd --- tst_pre_treatment_priming/test.py (.../test.py) (revision f027e8ea656a56912e18c4879eeae24f03c411a7) +++ tst_pre_treatment_priming/test.py (.../test.py) (revision 1fec37fb75e89566710219a770a8219ab33de5bd) @@ -146,20 +146,20 @@ test.startSection("Simulating different states of priming and verifying the busy and check indicator") for state, index in PRIMING_STATES.items(): test.startSection("Passing {} state".format(state)) - hd_simulator.cmd_send_pre_treatment_state_data(sub_mode=PreTreatmentSubModes.HD_PRE_TREATMENT_SELF_TEST_DRY_STATE.value, + hd_simulator.cmd_send_pre_treatment_state_data(sub_mode=PreTreatmentSubModes.HD_PRE_TREATMENT_PRIME_STATE.value, water_sample_state=0, consumables_self_test_state=0, no_cartridge_self_test_state=0, installation_state=0, dry_self_test_state=0, prime_state=index, recirculate_state=0, patient_connection_state=0) if (state == "HD_PRIME_START_STATE") or (state == "HD_PRIME_WAIT_FOR_USER_START_STATE") : verify_indicators(None, PRIMING_STEPS) if state == "HD_PRIME_WAIT_FOR_USER_START_STATE": - verify_the_start_priming_button(config.ENABLED) + verify_start_priming_button(config.ENABLED) else: - verify_the_start_priming_button(config.DISABLED) + verify_start_priming_button(config.DISABLED) verify_continue_button(config.DISABLED) elif (state == "HD_PRIME_SALINE_SETUP_STATE") or (state == "HD_PRIME_SALINE_PURGE_AIR_STATE") or (state == "HD_PRIME_SALINE_CIRC_BLOOD_CIRCUIT_STATE") or (state == "HD_PRIME_RESERVOIR_ONE_FILL_COMPLETE_STATE") or (state == "HD_PRIME_DIALYSATE_DIALYSER_STATE"): verify_indicators(config.BUSY, "Blood Circuit Priming") - verify_the_start_priming_button(config.DISABLED) + verify_start_priming_button(config.DISABLED) verify_continue_button(config.DISABLED) elif (state == "HD_PRIME_RESERVOIR_TWO_FILL_COMPLETE_STATE") or (state == "HD_PRIME_DIALYSATE_BYPASS_STATE"): verify_indicators(config.CHECK, "Blood Circuit Priming") @@ -175,7 +175,7 @@ verify_indicators(config.CHECK, "Blood Circuit Priming") verify_indicators(config.CHECK, "Dialysate Circuit Priming") verify_indicators(config.BUSY, "Wet Self Tests") - verify_the_start_priming_button(config.DISABLED) + verify_start_priming_button(config.DISABLED) verify_completion_message_and_indicator(False, PRIMING_COMPLETE_MSG) verify_continue_button(config.DISABLED) test.endSection()