Fix calling sudo_check_call in check_nginx_pod_is_reached()

Change-Id: I9754b5030e2ccee07902fb2bee08ea965f083cf9
This commit is contained in:
Dennis Dmitriev 2016-08-25 13:45:31 +03:00
parent d2184edcf4
commit c8f73d12d9
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class TestFuelCCPInstaller(base_test.SystemBaseTest,
"""
env_node = node_name or underlay.node_names()[0]
cmd = "curl http://{}".format(ip)
underlay.sudo_check_call(command=cmd, node_name=env_node, verbose=True)
underlay.sudo_check_call(cmd=cmd, node_name=env_node, verbose=True)
@pytest.mark.snapshot_needed
@pytest.mark.revert_snapshot(ext.SNAPSHOT.initial)