From 9e700acbb173199a934e1657a0cbd6de9677637f Mon Sep 17 00:00:00 2001 From: Fabrice Francois Date: Wed, 10 Jan 2024 11:20:26 -0500 Subject: [PATCH] fix import Co-authored-by: Ruggero --- src/components/switch/switch.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/switch/switch.test.tsx b/src/components/switch/switch.test.tsx index 321cdf43b..f6c31cc75 100644 --- a/src/components/switch/switch.test.tsx +++ b/src/components/switch/switch.test.tsx @@ -1,5 +1,5 @@ import { fireEvent, render, screen } from '@testing-library/react'; -import { Switch, type ISwitchProps } from '../switch'; +import { Switch, type ISwitchProps } from './switch'; describe(' component', () => { const createTestComponent = (props?: Partial) => {