Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r9b04cc323c54bbd0bdd8bd2dee62a154d375b401 -r923e0245388dc99d9e98a4b49f49df083cff88f9 --- shared/scripts/configuration/utility.py (.../utility.py) (revision 9b04cc323c54bbd0bdd8bd2dee62a154d375b401) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 923e0245388dc99d9e98a4b49f49df083cff88f9) @@ -130,13 +130,13 @@ test.startSection("Verify the count down time in application") for count_down in range(MAXIMUM_COUNTDOWN_TIME, MINIMUM_COUNTDOWN_TIME-1, -1): if screen_title == BEGIN_PRIME_TITLE: - hd_simulator.cmd_send_pre_treatment_self_test_dry_progress_data(total=300, countdown=count_down) + hd_simulator.cmd_send_pre_treatment_self_test_dry_progress_data(300, count_down) elif screen_title == PRIMING_TITLE: - hd_simulator.cmd_send_pre_treatment_disposables_prime_progress_data(timeout=300, countdown=count_down) + hd_simulator.cmd_send_pre_treatment_disposables_prime_progress_data(300, count_down) elif screen_title == SYSTEM_SELF_TEST_TITLE: - hd_simulator.cmd_send_pre_treatment_self_test_no_cartridge_progress_data(total=300, countdown=count_down) + hd_simulator.cmd_send_pre_treatment_self_test_no_cartridge_progress_data(300, count_down) else: - dg_simulator.cmd_send_dg_pre_treatment_filter_flush_progress_data(total=300, countdown=count_down) + dg_simulator.cmd_send_dg_pre_treatment_filter_flush_progress_data(300, count_down) actual_time = get_time(screen_title) expected_time = convert_seconds_into_min_and_sec(count_down) test.compare(actual_time, expected_time, "Actual count down time: {} should be equal to expected count down time {}".format(actual_time, expected_time))