Skip to content

Commit

Permalink
fixup! refactor(rabbitmq): now the package respects all the repositor…
Browse files Browse the repository at this point in the history
…y standards
  • Loading branch information
iccicci committed Jun 23, 2022
1 parent c9bde11 commit febf84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rabbitmq/test/rabbitmqTxSubmitProvider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('RabbitMqTxSubmitProvider', () => {
expect(resA).toBeUndefined();
expect(resB).toBeUndefined();
} catch (error) {
expect((error as { innerError: unknown }).innerError).toBeInstanceOf(ProviderError);
expect((error as ProviderError).innerError).toBeInstanceOf(ProviderError);
}
};

Expand Down

0 comments on commit febf84e

Please sign in to comment.