From e5d23233b1597d61bdd4eddbce7c94b272088fbc Mon Sep 17 00:00:00 2001 From: ilanap Date: Wed, 30 Jan 2019 12:50:04 +0200 Subject: Fixes to tests Change-Id: Ife159ce00d501c8f0e00dc3cbc5a9f447d2b8ca4 Issue-ID: SDC-2028 Signed-off-by: ilanap --- cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js') diff --git a/cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js b/cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js index abfad80ae4..3e2321963c 100644 --- a/cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js +++ b/cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js @@ -58,7 +58,7 @@ function makeType() { When('I want to create an Operation', function() { let path = '/catalog/' + this.context.component.type + '/' + this.context.component.uniqueId + '/interfaceOperations'; - let inputData = util.getJSONFromFile('resources/json/interfaceoperation/createInterfaceOperations.json'); + let inputData = util.getJSONFromFile('resources/json/interfaceOperation/createInterfaceOperations.json'); var operationName = makeType(); var interfaceType = makeType(); inputData.interfaces.interface1.type = interfaceType; @@ -78,7 +78,7 @@ When('I want to create an Operation', function() { }); When('I want to update an Operation', function () { - let inputData = util.getJSONFromFile('resources/json/interfaceoperation/updateInterfaceOperation.json'); + let inputData = util.getJSONFromFile('resources/json/interfaceOperation/updateInterfaceOperation.json'); let path = '/catalog/'+ this.context.component.type + '/'+ this.context.component.uniqueId +'/interfaceOperations'; inputData.interfaces.interface1.operations.delete.uniqueId = this.context.interface.operationUniqueId; inputData.interfaces.interface1.type=this.context.interface.interfaceType; -- cgit 1.2.3-korg