From 14773a59825d7259aae48d5f9ecc628b4f6b083a Mon Sep 17 00:00:00 2001 From: Nikolay Stanchev <ns17@it-innovation.soton.ac.uk> Date: Mon, 12 Mar 2018 12:11:34 +0000 Subject: [PATCH] [ Issue #56 ] - fixed issue when pinging from windows OS --- test/streaming-sim/test_rspec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/streaming-sim/test_rspec.py b/test/streaming-sim/test_rspec.py index 801c15b..0183b4c 100644 --- a/test/streaming-sim/test_rspec.py +++ b/test/streaming-sim/test_rspec.py @@ -29,6 +29,6 @@ def test_ping(streaming_sim_config): system_dependent_param = "-n" if system().lower() == "windows" else "-c" for service in streaming_sim_config['hosts']: - command = ["ping", "{0} {1}".format(system_dependent_param, ping_count), service['ip_address']] + command = ["ping", system_dependent_param, str(ping_count), service['ip_address']] assert run(command).returncode == 0, "Service ping test failed for {0}".format(service['name']) print("\nSuccessfully passed ping test for service: {0}\n".format(service['name'])) -- GitLab