Skip to content

Commit

Permalink
chore(aws-logs): fix typo in error message (#13137)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
SoManyHs committed Feb 25, 2021
1 parent c8c1762 commit 624a93d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export = {
},

async 'responds with FAILED on error'(test: Test) {
const createLogGroupFake = sinon.fake.rejects(new Error('UnkownError'));
const createLogGroupFake = sinon.fake.rejects(new Error('UnknownError'));

AWS.mock('CloudWatchLogs', 'createLogGroup', createLogGroupFake);

Expand Down

0 comments on commit 624a93d

Please sign in to comment.