Index: shared/scripts/configuration/config.py =================================================================== diff -u -r6c88a2beef01f7961d99b85bdf227c2d4ab79228 -rab93cf9a55ce63ce83a05af7f9d8514fd2a497f6 --- shared/scripts/configuration/config.py (.../config.py) (revision 6c88a2beef01f7961d99b85bdf227c2d4ab79228) +++ shared/scripts/configuration/config.py (.../config.py) (revision ab93cf9a55ce63ce83a05af7f9d8514fd2a497f6) @@ -29,8 +29,7 @@ GOODMORNING_START_TIME_SEC = 0 GOODEVENING_START_TIME_SEC = 43200 -BLOOD_PRIMING_TEXT = "Blood Priming" -SALINE_UNIT = "mL" +#Blood Priming BLOOD_PRIMING_DEFAULT_VALUE = "0 mL" #Recirculate state Index: shared/scripts/configuration/strings.py =================================================================== diff -u -r6c88a2beef01f7961d99b85bdf227c2d4ab79228 -rab93cf9a55ce63ce83a05af7f9d8514fd2a497f6 --- shared/scripts/configuration/strings.py (.../strings.py) (revision 6c88a2beef01f7961d99b85bdf227c2d4ab79228) +++ shared/scripts/configuration/strings.py (.../strings.py) (revision ab93cf9a55ce63ce83a05af7f9d8514fd2a497f6) @@ -17,6 +17,10 @@ RECONNECT_BUTTON_TEXT = "RECONNECT" RECONNECT_TEXT = "Reconnect" +#Blood Priming +BLOOD_PRIMING_TEXT = "Blood Priming" +SALINE_UNIT = "mL" + # dictionary of rejection reason from application source code. # message location -> denali-> Headers-> common-> MsgDefs.h REJECTION_REASON = { Index: tst_recirculate/test.py =================================================================== diff -u -r6c88a2beef01f7961d99b85bdf227c2d4ab79228 -rab93cf9a55ce63ce83a05af7f9d8514fd2a497f6 --- tst_recirculate/test.py (.../test.py) (revision 6c88a2beef01f7961d99b85bdf227c2d4ab79228) +++ tst_recirculate/test.py (.../test.py) (revision ab93cf9a55ce63ce83a05af7f9d8514fd2a497f6) @@ -30,7 +30,7 @@ TIMER_DEFAULT_VALUE = 1 NUM_OF_INSTRUCTION = 3 -def verification_of_recirculate_recirculate_state(): +def verify_recirculate_recirculate_state(): """ Method to verify Treatment Recirculate Recirculate state screens """ @@ -58,7 +58,7 @@ verify_rejection_messages_for_recirculate() test.endSection() -def verification_of_treatment_recirculate_stopped_state(): +def verify_treatment_recirculate_stopped_state(): """ Method to verify Treatment Recirculate stopped state screens """ @@ -126,7 +126,12 @@ utils.tstStart(__file__) startApplication(config.AUT_NAME) - verification_of_recirculate_recirculate_state() - verification_of_treatment_recirculate_stopped_state() + verify_recirculate_recirculate_state() + verify_treatment_recirculate_stopped_state() + utils.tstDone() + + + + \ No newline at end of file