Skip to content

Commit e3bc2dd

Browse files
committed
prettier fix
1 parent 39efda1 commit e3bc2dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/mockAPIGatewayV1Server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function v1EventFromRequest(
3131
// simplify the V1 event down to what our integration actually cares about
3232
const event: Partial<APIGatewayProxyEvent> = {
3333
// @ts-expect-error (version actually can exist on v1 events, this seems to be a typing error)
34-
version: "1.0",
34+
version: '1.0',
3535
httpMethod: req.method!,
3636
headers: Object.fromEntries(
3737
Object.entries(req.headers).map(([name, value]) => {

0 commit comments

Comments
 (0)