Index: tst_treatment_blood_dialysateflow_rate/test.py =================================================================== diff -u -rf4171975166332d9b42ba0a994fa6859362d9455 -r2e73714b63ae5fd2ef8b5acca5043e136454feff --- tst_treatment_blood_dialysateflow_rate/test.py (.../test.py) (revision f4171975166332d9b42ba0a994fa6859362d9455) +++ tst_treatment_blood_dialysateflow_rate/test.py (.../test.py) (revision 2e73714b63ae5fd2ef8b5acca5043e136454feff) @@ -207,15 +207,16 @@ pwm = blood_dialysate_control_list[6] rot_count = blood_dialysate_control_list[7] flow_type = blood_dialysate_control_list[8] - + + # Integration team needs to determine if the new parameters for flow rate commands are needed for verification. if flow_type == config.BLOOD_FLOW_TEXT: hd_simulator.cmd_set_treatment_blood_flow_rate(flow_set_pt, measured_flow, rot_speed, mot_speed, mc_speed, - mc_current, pwm, rot_count) + mc_current, pwm, rot_count,0,0) test.compare(str(waitForObjectExists(names.o_treatment_blood_flow_rate).label), str(flow_set_pt)) elif flow_type == config.DIALYSATE_FLOW_TEXT: hd_simulator.cmd_set_treatment_dialysate_flow_rate(flow_set_pt, measured_flow, - rot_speed, mot_speed, mc_speed, mc_current, pwm) + rot_speed, mot_speed, mc_speed, mc_current, pwm,0,0,0) test.compare(str(waitForObjectExists(names.o_treatment_dialysate_flow_rate).label), str(flow_set_pt)) else :