From: Cédric Ollivier Date: Mon, 30 Jul 2018 00:20:10 +0000 (+0200) Subject: Allow backporting a pylint error X-Git-Tag: opnfv-7.0.0~157 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=4a3508ed3bf4a92e22e48344da98c4afeb3ea8c2;p=functest.git Allow backporting a pylint error Change-Id: I2df0964d63c80abbc5c5cc438e1fdd32f24fd52f Signed-off-by: Cédric Ollivier --- 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