Skip to content

Commit 4115192

Browse files
committed
fix apikey property name in test
1 parent 5bdafbf commit 4115192

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/base.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,8 +1374,8 @@ describe('CONVERT FUNCTION TESTS ', function() {
13741374
expect(conversionResult.output[0].data).to.have.property('info');
13751375
expect(conversionResult.output[0].data).to.have.property('item');
13761376
expect(conversionResult.output[0].data.item.length).to.equal(1);
1377-
expect(conversionResult.output[0].data.auth.apiKey[0].value).to.equal('{{api_key_name}}');
1378-
expect(conversionResult.output[0].data.auth.apiKey[1].value).to.equal('{{api_key}}');
1377+
expect(conversionResult.output[0].data.auth.apikey[0].value).to.equal('{{api_key_name}}');
1378+
expect(conversionResult.output[0].data.auth.apikey[1].value).to.equal('{{api_key}}');
13791379
done();
13801380
});
13811381
});

0 commit comments

Comments
 (0)