Index: tst_DGHeatersData/test.py =================================================================== diff -u -rcea779e4d5eb422603a9194f6b9a01ec7e268612 -r867655840cada2d79fa5028c8fab68516ea59673 --- tst_DGHeatersData/test.py (.../test.py) (revision cea779e4d5eb422603a9194f6b9a01ec7e268612) +++ tst_DGHeatersData/test.py (.../test.py) (revision 867655840cada2d79fa5028c8fab68516ea59673) @@ -40,17 +40,17 @@ step = 10 for i in range ( 10, 500, step): - HDSimulator.setDGHeatersData(i, i + step * 1, i + step * 2) + HDSimulator.cmd_set_dg_heaters_data(i, i + step * 1, i + step * 2) test_values (i, i + step * 1, i + step * 2) - HDSimulator.setDGHeatersData(100, 200, 300) + HDSimulator.cmd_set_dg_heaters_data(100, 200, 300) test_values (100, 200, 300) - HDSimulator.setDGHeatersData(100, 200, 300) + HDSimulator.cmd_set_dg_heaters_data(100, 200, 300) test_values (100, 200, 300) # Coverage - HDSimulator.setDGHeatersData(0, 0, 0) + HDSimulator.cmd_set_dg_heaters_data(0, 0, 0) test_values (0, 0, 0) utils.tstDone()