Fixed unformatted message string
In _check_server_connectivity() method of tempest/scenario/test_network_basic_ops module, message is not properly formatted. Formatted the message string properly. Closes-Bug: 1483557 Change-Id: I719106acdacf0c75a86c20eba9c62e27a3a99f0c
This commit is contained in:
parent
fcda4d62ba
commit
b68b9472bd
@ -338,8 +338,8 @@ class TestNetworkBasicOps(manager.NetworkScenarioTest):
|
|||||||
|
|
||||||
for remote_ip in address_list:
|
for remote_ip in address_list:
|
||||||
if should_connect:
|
if should_connect:
|
||||||
msg = "Timed out waiting for "
|
msg = ("Timed out waiting for %s to become "
|
||||||
"%s to become reachable" % remote_ip
|
"reachable") % remote_ip
|
||||||
else:
|
else:
|
||||||
msg = "ip address %s is reachable" % remote_ip
|
msg = "ip address %s is reachable" % remote_ip
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user