From 1a5886eb698ec239924c66e4c5a6963e873e7701 Mon Sep 17 00:00:00 2001 From: Rob Stanford Date: Tue, 23 Jul 2024 17:59:53 +0100 Subject: [PATCH] test: fix incorrect locale test --- tests/integration/edge-handler.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/edge-handler.test.ts b/tests/integration/edge-handler.test.ts index f8ff32a37e..8f26a851f4 100644 --- a/tests/integration/edge-handler.test.ts +++ b/tests/integration/edge-handler.test.ts @@ -261,7 +261,7 @@ describe("aborts middleware execution when the matcher conditions don't match th ctx.cleanup?.push(() => origin.stop()) - for (const path of ['/hello', '/en/hello', '/nl-NL/hello', '/nl-NL/about']) { + for (const path of ['/hello', '/en/hello', '/nl-NL/about']) { const response = await invokeEdgeFunction(ctx, { functions: ['___netlify-edge-handler-middleware'], origin,