From 9b89fbf127b710166119766e3da4bf3296ae1bba Mon Sep 17 00:00:00 2001 From: Ambroise C Date: Thu, 15 Jun 2023 16:38:14 +0200 Subject: [PATCH] SONAR-18835 Fix selector imports in tests --- .../apps/webhooks/components/__tests__/CreateWebhookForm-it.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/js/apps/webhooks/components/__tests__/CreateWebhookForm-it.tsx b/server/sonar-web/src/main/js/apps/webhooks/components/__tests__/CreateWebhookForm-it.tsx index c56875897d3..bfbcf0e433b 100644 --- a/server/sonar-web/src/main/js/apps/webhooks/components/__tests__/CreateWebhookForm-it.tsx +++ b/server/sonar-web/src/main/js/apps/webhooks/components/__tests__/CreateWebhookForm-it.tsx @@ -19,8 +19,8 @@ */ import userEvent from '@testing-library/user-event'; import * as React from 'react'; -import { byLabelText, byRole } from 'testing-library-selector'; import { renderComponent } from '../../../../helpers/testReactTestingUtils'; +import { byLabelText, byRole } from '../../../../helpers/testSelector'; import CreateWebhookForm from '../CreateWebhookForm'; const ui = { -- 2.39.5