From 8087b7804e37e0eb8cdea593b6e131f4bd6d98df Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 9 Feb 2023 09:56:17 -0500 Subject: [PATCH] [tests] Fix app-dir test assertion (#9404) This was changed in `next@canary` --- packages/next/test/integration/index.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next/test/integration/index.test.js b/packages/next/test/integration/index.test.js index c3c0ae747..10ad198c4 100644 --- a/packages/next/test/integration/index.test.js +++ b/packages/next/test/integration/index.test.js @@ -26,7 +26,7 @@ if (parseInt(process.versions.node.split('.')[0], 10) >= 16) { } } - expect(lambdas.size).toBe(2); + expect(lambdas.size).toBe(1); expect(buildResult.output['dashboard']).toBeDefined(); expect(buildResult.output['dashboard/another']).toBeDefined(); expect(buildResult.output['dashboard/changelog']).toBeDefined();