diff options
author | ilanap <ilanap@amdocs.com> | 2018-04-25 13:39:19 +0300 |
---|---|---|
committer | ilanap <ilanap@amdocs.com> | 2018-04-25 13:39:19 +0300 |
commit | ad3c41b5693b4f0b2a151e9c3221551e24f8264d (patch) | |
tree | 61eb7da7c28eb49c79a7df3991cf0e41c67dcf42 /openecomp-bdd/stepDefinitions/VF_steps.js | |
parent | c3c481660d3494fccfafcd3bacd3f5b8cd3ecd8e (diff) |
Fix for BDD multiple servers
Change-Id: Ibfc9813e471d4ac2509ee5e62828a07661cc704e
Issue-ID: SDC-1262
Signed-off-by: ilanap <ilanap@amdocs.com>
Diffstat (limited to 'openecomp-bdd/stepDefinitions/VF_steps.js')
-rw-r--r-- | openecomp-bdd/stepDefinitions/VF_steps.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openecomp-bdd/stepDefinitions/VF_steps.js b/openecomp-bdd/stepDefinitions/VF_steps.js index 268c371687..3411a25fcb 100644 --- a/openecomp-bdd/stepDefinitions/VF_steps.js +++ b/openecomp-bdd/stepDefinitions/VF_steps.js @@ -29,7 +29,7 @@ Then('I want to create a VF for this Item', function () { return util.request(this.context, 'GET', '/vendor-software-products/' + this.context.item.id + '/versions/' + this.context.item.versionId).then(result => { this.context.inputData = util.getJSONFromFile('resources/json/createVF.json'); // start replacing stuff - this.context.inputData.contactId = this.context.headers["USER_ID"]; + this.context.inputData.contactId = this.context.headers['vf']["USER_ID"]; this.context.inputData.categories[0].uniqueId = result.data.category; this.context.inputData.categories[0].subcategories[0].uniqueId = result.data.subCategory; this.context.inputData.description = result.data.description; |