Index: suite_leahi/suite.conf =================================================================== diff -u -re58d9f6dc5af4dc1024cab3284b0bd0a1d7cf172 -re71b29e10fac2e872849aa1e7a1796f4ae383cea --- suite_leahi/suite.conf (.../suite.conf) (revision e58d9f6dc5af4dc1024cab3284b0bd0a1d7cf172) +++ suite_leahi/suite.conf (.../suite.conf) (revision e71b29e10fac2e872849aa1e7a1796f4ae383cea) @@ -1,6 +1,6 @@ AUT=leahi LANGUAGE=Python OBJECTMAPSTYLE=script -TEST_CASES=tst_service_institutional +TEST_CASES=tst_solution_infusion tst_main_treatment tst_service_export_logs tst_device_settings_information_version tst_headerbar_information_popup tst_headerbar_wifi_indicator tst_device_settings_wifi tst_ultrafiltration tst_create_treatment tst_general_alarm_requirements_instruction tst_headerbar_prescription tst_heparin tst_service_institutional VERSION=3 WRAPPERS=Qt Index: suite_leahi/tst_service_institutional/test.py =================================================================== diff -u -r73c4e802a5f3b937d8c6b96610658f83f0c3eabc -re71b29e10fac2e872849aa1e7a1796f4ae383cea --- suite_leahi/tst_service_institutional/test.py (.../test.py) (revision 73c4e802a5f3b937d8c6b96610658f83f0c3eabc) +++ suite_leahi/tst_service_institutional/test.py (.../test.py) (revision e71b29e10fac2e872849aa1e7a1796f4ae383cea) @@ -715,7 +715,7 @@ default_value = utility.findObjectById(parent_obj, "_text") test.compare( str(default_value.text), - '150', + str(INSTITUTIONAL_CONFIGURATIONS_BLOOD_FLOW_CUSTOM_VALUES[BLOOD_FLOW_RATE_DEF]), "Comparison of Default Blood Flow Value", ) utility.set_value_based_on_target(names.o_PreTreatmentCreate_bloodFlowRateControl_ValueAdjuster, 100) @@ -725,8 +725,8 @@ minimum_value = utility.findObjectById(parent_obj, "_text") test.compare( str(minimum_value.text), - '100', - "Comparison of Default Blood Flow Value", + str(INSTITUTIONAL_CONFIGURATIONS_BLOOD_FLOW_CUSTOM_VALUES[BLOOD_FLOW_RATE_MIN]), + "Comparison of Minimum Blood Flow Value", ) utility.set_value_based_on_target(names.o_PreTreatmentCreate_bloodFlowRateControl_ValueAdjuster, 200) right_arrow = findObject(names.o_PreTreatmentCreate_rightArrow_IconButton) @@ -735,8 +735,8 @@ maxmum_value = utility.findObjectById(parent_obj, "_text") test.compare( str(maxmum_value.text), - '200', - "Comparison of Default Blood Flow Value", + str(INSTITUTIONAL_CONFIGURATIONS_BLOOD_FLOW_CUSTOM_VALUES[BLOOD_FLOW_RATE_MAX]), + "Comparison of Maximum Blood Flow Value", ) test.endSection()