Index: tests/dg_heat_disinfect_test.py =================================================================== diff -u -r41b8ceb850aca652c0e060e8738027fc7aeb473c -r01db18a18769df2048346f868412fc8a12631fc0 --- tests/dg_heat_disinfect_test.py (.../dg_heat_disinfect_test.py) (revision 41b8ceb850aca652c0e060e8738027fc7aeb473c) +++ tests/dg_heat_disinfect_test.py (.../dg_heat_disinfect_test.py) (revision 01db18a18769df2048346f868412fc8a12631fc0) @@ -132,7 +132,7 @@ complete_counter = 1 f = open("/home/fw/projects/dialin/tests/Heat_disinfect.log", "w") - dg.heat_disinfect.cmd_start_stop_heat_disinfect() + dg.hd_proxy.cmd_start_stop_heat_disinfect() try: while True: @@ -155,7 +155,7 @@ if dg.dg_operation_mode == 3 or dg.dg_operation_mode == 4: # If it is the first call, stop heat disinfect if complete_counter == 1: - dg.heat_disinfect.cmd_start_stop_heat_disinfect(start=False) + dg.hd_proxy.cmd_start_stop_heat_disinfect(start=False) # Write a few more complete states to make sure the complete state items are recorded elif complete_counter == 3: f.close() @@ -164,7 +164,7 @@ complete_counter += 1 except KeyboardInterrupt: - dg.heat_disinfect.cmd_start_stop_heat_disinfect(start=False) + dg.hd_proxy.cmd_start_stop_heat_disinfect(start=False) f.close()