From 5880767ac3ee521f15ae1d495757d5a08aae24fd Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Wed, 5 Oct 2022 17:23:41 +0200 Subject: [PATCH] Fixed incorrect import --- test/short-urls/ShortUrlForm.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/short-urls/ShortUrlForm.test.tsx b/test/short-urls/ShortUrlForm.test.tsx index 60b983c4..b0c5dc47 100644 --- a/test/short-urls/ShortUrlForm.test.tsx +++ b/test/short-urls/ShortUrlForm.test.tsx @@ -1,5 +1,5 @@ import { screen } from '@testing-library/react'; -import { UserEvent } from '@testing-library/user-event/dist/types/setup'; +import { UserEvent } from '@testing-library/user-event/setup/setup'; import { formatISO } from 'date-fns'; import { Mock } from 'ts-mockery'; import { ShortUrlForm as createShortUrlForm, Mode } from '../../src/short-urls/ShortUrlForm';