From d6052a31a330f37afd4d05efd89b289966aa23fb Mon Sep 17 00:00:00 2001 From: pritisarap12 Date: Tue, 2 Jun 2015 13:19:19 +0530 Subject: [PATCH] Modified test_lb_secondary_ip.py file: Local variable accessed as class variable Signed-off-by: Daan Hoogland This closes #344 --- test/integration/component/test_lb_secondary_ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/component/test_lb_secondary_ip.py b/test/integration/component/test_lb_secondary_ip.py index 03551ab5851..e1d885d62ef 100644 --- a/test/integration/component/test_lb_secondary_ip.py +++ b/test/integration/component/test_lb_secondary_ip.py @@ -1984,7 +1984,7 @@ class TestExternalLoadBalancer(cloudstackTestCase): defaultEthernetDevice = str(response[2].split()[0]) cmd = "ip addr add {0}/24 broadcast {0} dev {1}".format( - self.secondaryip.ipaddress, defaultEthernetDevice) + secondaryip.ipaddress, defaultEthernetDevice) sshClient.execute(cmd) sshClient.execute("ip addr show")