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'", ); });