Skip to content

Commit

Permalink
test(rabbitmq): fix createQueueIfNotExists tests not using the create…
Browse files Browse the repository at this point in the history
…QueueIfNotExists option

The createQueueIfNotExists tests were incorrectly using the createExchangeIfNotExists option
  • Loading branch information
ttshivers committed Jan 16, 2024
1 parent 1891b32 commit 6ec7d0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/rabbitmq/e2e/configuration.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ describe('Module Configuration', () => {
queues: [
{
name: nonExistingQueue,
createExchangeIfNotExists: false,
createQueueIfNotExists: false,
},
],
uri,
Expand Down Expand Up @@ -201,7 +201,7 @@ describe('Module Configuration', () => {
queues: [
{
name: nonExistingQueue,
createExchangeIfNotExists: true,
createQueueIfNotExists: true,
},
],
uri,
Expand Down

0 comments on commit 6ec7d0c

Please sign in to comment.