Skip to content

Commit

Permalink
test: remove redundant await
Browse files Browse the repository at this point in the history
  • Loading branch information
thorseraq committed Jul 28, 2023
1 parent 2b1b63a commit 0681952
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ describe('InterceptorsConsumer', () => {
const val = 3;
const next = async () => of(val);
expect(
await await lastValueFrom(consumer.transformDeferred(next) as any),
await lastValueFrom(consumer.transformDeferred(next) as any),
).to.be.eql(val);
});
});
Expand Down

0 comments on commit 0681952

Please sign in to comment.