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()