From 2632070cb20d5269ac2c66f5a389d9c895cf422a Mon Sep 17 00:00:00 2001 From: Gal Schlezinger Date: Sun, 13 Feb 2022 17:21:16 +0200 Subject: [PATCH] remove unused import --- .../production/reading-request-body-in-middleware/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/production/reading-request-body-in-middleware/index.test.ts b/test/production/reading-request-body-in-middleware/index.test.ts index 13b149503323..fe5c5147f02c 100644 --- a/test/production/reading-request-body-in-middleware/index.test.ts +++ b/test/production/reading-request-body-in-middleware/index.test.ts @@ -1,6 +1,6 @@ import { createNext } from 'e2e-utils' import { NextInstance } from 'test/lib/next-modes/base' -import { fetchViaHTTP, renderViaHTTP } from 'next-test-utils' +import { fetchViaHTTP } from 'next-test-utils' describe('reading request body in middleware', () => { let next: NextInstance