Skip to content
Snippets Groups Projects
Commit 14773a59 authored by Nikolay Stanchev's avatar Nikolay Stanchev
Browse files

[ Issue #56 ] - fixed issue when pinging from windows OS

parent b6af85e7
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,6 @@ def test_ping(streaming_sim_config): ...@@ -29,6 +29,6 @@ def test_ping(streaming_sim_config):
system_dependent_param = "-n" if system().lower() == "windows" else "-c" system_dependent_param = "-n" if system().lower() == "windows" else "-c"
for service in streaming_sim_config['hosts']: 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']) 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'])) print("\nSuccessfully passed ping test for service: {0}\n".format(service['name']))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment