Skip to content

Commit

Permalink
test(microservice): revert change on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bangbang93 committed Jul 27, 2022
1 parent b29299b commit 0ec9cb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/microservices/test/client/client-rmq.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ describe('ClientRMQ', function () {
response: 'test',
isDisposed: true,
};
await client.handleMessage(packet, undefined, callback);
await client.handleMessage(packet, callback);
expect(
callback.calledWith({
err: undefined,
Expand All @@ -333,7 +333,7 @@ describe('ClientRMQ', function () {
response: 'test',
isDisposed: false,
};
await client.handleMessage(packet, undefined, callback);
await client.handleMessage(packet, callback);
expect(
callback.calledWith({
err: undefined,
Expand Down

0 comments on commit 0ec9cb7

Please sign in to comment.