session.cmd_output() now takes a 'cmd' parameter, rather than a 'command' parameter. Signed-off-by: Lucas Meneghel Rodrigues <lmr@xxxxxxxxxx> --- client/tests/kvm/tests/iozone_windows.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/client/tests/kvm/tests/iozone_windows.py b/client/tests/kvm/tests/iozone_windows.py index 15b135e..508ae95 100644 --- a/client/tests/kvm/tests/iozone_windows.py +++ b/client/tests/kvm/tests/iozone_windows.py @@ -29,8 +29,7 @@ def run_iozone_windows(test, params, env): c = params.get("iozone_cmd") t = int(params.get("iozone_timeout")) logging.info("Running IOzone command on guest, timeout %ss", t) - results = session.cmd_output(command=c, timeout=t, - print_func=logging.debug) + results = session.cmd_output(cmd=c, timeout=t, print_func=logging.debug) utils.open_write_close(results_path, results) # Postprocess the results using the IOzone postprocessing module -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html