aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2018-08-03 05:58:55 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-08-03 05:58:55 +0000
commit8aaf7d0a04017b766aec7b029634d306135b44ef (patch)
tree81e438652ad0fcc26680bc4e77035e9c28819454 /functest/opnfv_tests
parent9c19bb9bb41e36d4ca70563649ced92ce7ab9b82 (diff)
parent5bf02523aeb68ea79805d8c0b5d5823757920432 (diff)
Merge "Fix parse error in tempest_smoke"
Diffstat (limited to 'functest/opnfv_tests')
-rw-r--r--functest/opnfv_tests/openstack/tempest/conf_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py
index 88ad3b2d9..6eb79ed41 100644
--- a/functest/opnfv_tests/openstack/tempest/conf_utils.py
+++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py
@@ -55,7 +55,7 @@ def create_rally_deployment():
with open(RALLY_AARCH64_PATCH_PATH, "r") as pfile:
rally_patch_conf = pfile.read()
- for line in fileinput.input(RALLY_CONF_PATH, inplace=1):
+ for line in fileinput.input(RALLY_CONF_PATH):
print(line, end=' ')
if "cirros|testvm" in line:
print(rally_patch_conf)