Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carlnordenfelt committed Jul 30, 2020
1 parent 1746fc0 commit ec02f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/index-unit-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ describe('Index unit tests', () => {
});
it('Update should succeed, with config overrides', (done) => {
subject()
.register('Plugin', require('plugin'), { logEvents: true, logResponse: true, maskedProperties: [] }) // eslint-disable-line import/no-extraneous-dependencies
.register('Plugin', require('plugin'), { logEvents: true, logResponse: true, maskedProperties: [] }) // eslint-disable-line import/no-extraneous-dependencies, max-len
.handler({ RequestType: 'Update', ResourceType: 'Custom::Plugin' }, {}, () => {
expect(logEventStub.called).to.equal(true);
expect(responseStub.calledOnce).to.equal(true);
Expand Down

0 comments on commit ec02f9c

Please sign in to comment.