From ddb4f129d8ae6ca36712b6054a69b4c5a1728544 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbunov Date: Sat, 9 Mar 2024 19:55:50 +0500 Subject: [PATCH] fix(condo) DOMA-7397: Fix semgrep vulnerability (haha) --- .../domains/news/schema/GetNewsSharingRecipientsService.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/condo/domains/news/schema/GetNewsSharingRecipientsService.test.js b/apps/condo/domains/news/schema/GetNewsSharingRecipientsService.test.js index 657e53eb711..d1c68961fc6 100644 --- a/apps/condo/domains/news/schema/GetNewsSharingRecipientsService.test.js +++ b/apps/condo/domains/news/schema/GetNewsSharingRecipientsService.test.js @@ -160,7 +160,7 @@ describe('GetNewsSharingRecipientsService', () => { test('fails if remote server is inaccessible', async () => { const [B2BAppFailingNewsSharingConfig] = await createTestB2BAppNewsSharingConfig(adminClient, { - getRecipientsUrl: 'http://192.168.255.255', + getRecipientsUrl: 'https://192.168.255.255', previewUrl: `${testExpressAppBaseUrl}${SUCCESS_PREVIEW_URL}`, publishUrl: `${testExpressAppBaseUrl}${SUCCESS_PUBLISH_URL}`, })