Index: shared/scripts/configuration/strings.py =================================================================== diff -u -rd5d976dfec8c5324cd779fb192b1a3e36032547d -rcb040b6766457858de6f41141e116fdb95010dbe --- shared/scripts/configuration/strings.py (.../strings.py) (revision d5d976dfec8c5324cd779fb192b1a3e36032547d) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision cb040b6766457858de6f41141e116fdb95010dbe) @@ -102,7 +102,7 @@ HEPARIN_DISPENSING_RATE = "Heparin Dispensing Rate" HEPARIN_BOLUS_VOLUME = "Heparin Bolus Volume" HEPARIN_STOP_TIME = "Heparin Stop Time" -SALINE_BOLUS = "Saline Bolus Volume" +SALINE_BOLUS_VOLUME = "Saline Bolus Volume" HEPARIN_TYPE_TITLE = "Heparin Type" SALINE_BOLUS_TITLE = "Saline Bolus" ACID_CONCENTRATE_TITLE = "Acid Concentrate" Index: tst_create_custom_treatment/test.py =================================================================== diff -u -rd5d976dfec8c5324cd779fb192b1a3e36032547d -rcb040b6766457858de6f41141e116fdb95010dbe --- tst_create_custom_treatment/test.py (.../test.py) (revision d5d976dfec8c5324cd779fb192b1a3e36032547d) +++ tst_create_custom_treatment/test.py (.../test.py) (revision cb040b6766457858de6f41141e116fdb95010dbe) @@ -411,7 +411,7 @@ test.startSection("verification of saline bolus values") test.compare(waitForObject(names.o_PreTreatmentCreate_salineBolus_SliderCreateTreatment).label, config.SALINE_BOLUS_TITLE, "Parameter should be -> "+str(config.SALINE_BOLUS)) - for saline_bolus in config.CREATE_TREATMENT_PARAMETER_RANGE[config.SALINE_BOLUS]: + for saline_bolus in config.CREATE_TREATMENT_PARAMETER_RANGE[config.SALINE_BOLUS_VOLUME]: test_custom_treatment_slider(names.o_PreTreatmentCreate_salineBolusSlider_Slider, saline_bolus, config.CREATE_TREATMENT_SLIDER_VALUES["saline_bolus"], config.SALINE_BOLUS) test.endSection()