Skip to content

Commit fecc054

Browse files
committed
linting
1 parent 17aefd6 commit fecc054

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/sqs/test/consumers/SqsPermissionConsumer.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -645,8 +645,10 @@ describe('SqsPermissionConsumer', () => {
645645
}),
646646
)
647647

648-
messages.map(m => publisher.publish(m))
649-
await Promise.all(messages.map((m) => consumer.handlerSpy.waitForMessageWithId(m.id, 'consumed')))
648+
messages.map((m) => publisher.publish(m))
649+
await Promise.all(
650+
messages.map((m) => consumer.handlerSpy.waitForMessageWithId(m.id, 'consumed')),
651+
)
650652

651653
// Verifies that each message is executed only once
652654
expect(consumer.addCounter).toBe(messagesAmount)

0 commit comments

Comments
 (0)