Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchambo committed Nov 9, 2020
1 parent 7eabe91 commit 57e9d5a
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ describe('DynamoDBSubscriptionManager', () => {
let pages = 0;

// eslint-disable-next-line @typescript-eslint/no-unused-vars
for await (const page of subscriptionManager.subscribersByEvent(
{ event: 'test', payload: {} },
)) {
for await (const page of subscriptionManager.subscribersByEvent({
event: 'test',
payload: {},
})) {
pages++;
}

Expand Down Expand Up @@ -68,9 +69,10 @@ describe('DynamoDBSubscriptionManager', () => {
let pages = 0;

// eslint-disable-next-line @typescript-eslint/no-unused-vars
for await (const page of subscriptionManager.subscribersByEvent(
{ event: 'test', payload: {} },
)) {
for await (const page of subscriptionManager.subscribersByEvent({
event: 'test',
payload: {},
})) {
pages++;
}

Expand Down

0 comments on commit 57e9d5a

Please sign in to comment.