Skip to content

Commit

Permalink
Fix object-shorthand lint rule failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
filmaj committed Aug 9, 2021
1 parent 39480c4 commit 903d3b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/receivers/AwsLambdaReceiver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('AwsLambdaReceiver', function () {
pathParameters: null,
stageVariables: null,
requestContext: {},
body: body,
body,
isBase64Encoded: false,
};
const response1 = await handler(
Expand Down Expand Up @@ -190,7 +190,7 @@ describe('AwsLambdaReceiver', function () {
pathParameters: null,
stageVariables: null,
requestContext: {},
body: body,
body,
isBase64Encoded: false,
};
const response1 = await handler(
Expand Down Expand Up @@ -243,7 +243,7 @@ describe('AwsLambdaReceiver', function () {
pathParameters: null,
stageVariables: null,
requestContext: {},
body: body,
body,
isBase64Encoded: false,
};
const response1 = await handler(
Expand Down Expand Up @@ -298,7 +298,7 @@ describe('AwsLambdaReceiver', function () {
pathParameters: null,
stageVariables: null,
requestContext: {},
body: body,
body,
isBase64Encoded: false,
};
const response1 = await handler(
Expand Down

0 comments on commit 903d3b8

Please sign in to comment.