From 6ec7d0cd7d574622db573a0c41f408810c81d28d Mon Sep 17 00:00:00 2001 From: Conicaw Date: Mon, 15 Jan 2024 23:10:28 -0600 Subject: [PATCH] test(rabbitmq): fix createQueueIfNotExists tests not using the createQueueIfNotExists option The createQueueIfNotExists tests were incorrectly using the createExchangeIfNotExists option --- integration/rabbitmq/e2e/configuration.e2e-spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/rabbitmq/e2e/configuration.e2e-spec.ts b/integration/rabbitmq/e2e/configuration.e2e-spec.ts index 993d5d16f..a31685a22 100644 --- a/integration/rabbitmq/e2e/configuration.e2e-spec.ts +++ b/integration/rabbitmq/e2e/configuration.e2e-spec.ts @@ -170,7 +170,7 @@ describe('Module Configuration', () => { queues: [ { name: nonExistingQueue, - createExchangeIfNotExists: false, + createQueueIfNotExists: false, }, ], uri, @@ -201,7 +201,7 @@ describe('Module Configuration', () => { queues: [ { name: nonExistingQueue, - createExchangeIfNotExists: true, + createQueueIfNotExists: true, }, ], uri,