From 733cf9bb072d16bc7a5432c5bb7ccd09a71c6301 Mon Sep 17 00:00:00 2001 From: streamich Date: Tue, 31 Dec 2019 00:04:29 +0100 Subject: [PATCH] =?UTF-8?q?test:=20=F0=9F=92=8D=20fix=20useAsync=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/useAsync.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/useAsync.test.tsx b/tests/useAsync.test.tsx index 3993b6bc..98fa2532 100644 --- a/tests/useAsync.test.tsx +++ b/tests/useAsync.test.tsx @@ -148,7 +148,7 @@ describe('useAsync', () => { hook = renderHook( ({ fn, counter }) => { const callback = useCallback(() => fn(counter), [counter]); - return useAsync(callback, [callback]); + return useAsync(callback, [callback]); }, { initialProps: {