From 4a3508ed3bf4a92e22e48344da98c4afeb3ea8c2 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 30 Jul 2018 02:20:10 +0200 Subject: Allow backporting a pylint error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2df0964d63c80abbc5c5cc438e1fdd32f24fd52f Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/vnf/router/cloudify_vrouter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functest/opnfv_tests/vnf') diff --git a/functest/opnfv_tests/vnf/router/cloudify_vrouter.py b/functest/opnfv_tests/vnf/router/cloudify_vrouter.py index 79e8d801a..02d871fd9 100644 --- a/functest/opnfv_tests/vnf/router/cloudify_vrouter.py +++ b/functest/opnfv_tests/vnf/router/cloudify_vrouter.py @@ -159,7 +159,7 @@ class CloudifyVrouter(cloudify.Cloudify): self.vnf['inputs'].update(dict( keystone_url=self.get_public_auth_url(self.orig_cloud))) - if (self.deploy_vnf() and self.test_vnf()): + if self.deploy_vnf() and self.test_vnf(): self.result = 100 return 0 self.result = 1/3 * 100 -- cgit 1.2.3-korg