summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjose.lausuch <jose.lausuch@ericsson.com>2016-09-06 14:22:26 +0200
committerJose Lausuch <jose.lausuch@ericsson.com>2016-09-06 13:28:21 +0000
commitb8aa6a679f759174881b0b7a90d8403fed2bcc0e (patch)
treeefabfcc408bce833fe7cada5bb01f57a75132e41
parent31fe3e13302cc516fa680905f399908e48cc2c4d (diff)
[Promise] Fix bug opening the json result file
Change-Id: I8882ffc8139095a79b6542c508a6293ae231f232 Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com> (cherry picked from commit 56fa7f26dae9c41235ea1251e1b7d2ea1b389b7c)
-rwxr-xr-xtestcases/features/promise.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testcases/features/promise.py b/testcases/features/promise.py
index a7899fec5..5b23614d6 100755
--- a/testcases/features/promise.py
+++ b/testcases/features/promise.py
@@ -182,8 +182,8 @@ def main():
os.environ["OS_TEST_NETWORK"] = network_dic["net_id"]
os.chdir(PROMISE_REPO)
- results_file_name = 'promise-results.json'
- results_file = open(RESULTS_DIR + '/' + results_file_name, 'w+')
+ results_file_name = RESULTS_DIR + '/' + 'promise-results.json'
+ results_file = open(results_file_name, 'w+')
cmd = 'npm run -s test -- --reporter json'
logger.info("Running command: %s" % cmd)