From 24338b05f8644668651884f7dd2073c66e419b16 Mon Sep 17 00:00:00 2001 From: Kevin Gartland Date: Mon, 26 Aug 2024 16:38:52 -0400 Subject: [PATCH] fix tests for new line file array --- test/vscode-ui/test/specs/nested-fastapi.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/vscode-ui/test/specs/nested-fastapi.spec.ts b/test/vscode-ui/test/specs/nested-fastapi.spec.ts index 1c09dc85b..8ae930a4b 100644 --- a/test/vscode-ui/test/specs/nested-fastapi.spec.ts +++ b/test/vscode-ui/test/specs/nested-fastapi.spec.ts @@ -166,7 +166,7 @@ describe("Nested Fast API Deployment", () => { ); const fileContent = fs.readFileSync(filePath, "utf8"); await expect(fileContent).toContain( - "type = 'python-fastapi'\nentrypoint = 'simple.py'\nvalidate = true\nfiles = ['simple.py', 'requirements.txt']\ntitle = 'my fastapi app'", + "type = 'python-fastapi'\nentrypoint = 'simple.py'\nvalidate = true\nfiles = [\n 'simple.py',\n 'requirements.txt'\n]\ntitle = 'my fastapi app'", ); });