Index: tests/test_heprin_bolus_target_rate.py =================================================================== diff -u -r1230c685476b4fe0aee90ecf07b553725c1a3e92 -rb3d73840b963d02bdf655b50b8b2fcd51e4d7f0b --- tests/test_heprin_bolus_target_rate.py (.../test_heprin_bolus_target_rate.py) (revision 1230c685476b4fe0aee90ecf07b553725c1a3e92) +++ tests/test_heprin_bolus_target_rate.py (.../test_heprin_bolus_target_rate.py) (revision b3d73840b963d02bdf655b50b8b2fcd51e4d7f0b) @@ -17,21 +17,17 @@ import sys sys.path.append("..") from dialin.hd.hemodialysis_device import HD -from dialin.dg.dialysate_generator import DG from time import sleep if __name__ == "__main__": - # Create a heprin bolus set target rate object called df_object + # Create a heprin bolus set target rate object called hd_object hd_object = HD() - hd_object.cmd_log_in_to_dg() + hd_object.cmd_log_in_to_hd() hd_object.syringe_pump.cmd_heprin_target_rate_override(30.0) - - -