diff options
Diffstat (limited to 'cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js')
-rw-r--r-- | cucumber-js-test-apis-ci/stepDefinitions/InterfaceOperationSteps.js | 4 |
1 files changed, 2 insertions, 2 deletions
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; |