diff --git a/tests/test_project_status.py b/tests/test_project_status.py index db3148f..55fa6c8 100644 --- a/tests/test_project_status.py +++ b/tests/test_project_status.py @@ -255,16 +255,14 @@ def _make_fullstack_repo(tmp_path: Path) -> None: (tmp_path / "frontend" / "static" / "icon.svg").write_text("\n") (tmp_path / "frontend" / "src").mkdir(parents=True, exist_ok=True) (tmp_path / "frontend" / "src" / "app.html").write_text( - '' + "" '' '' - '\n' + "\n" ) (tmp_path / "frontend" / "tests" / "e2e").mkdir(parents=True, exist_ok=True) (tmp_path / "frontend" / "tests" / "e2e" / "mobile.spec.ts").write_text("// mobile\n") - (tmp_path / "frontend" / "tests" / "e2e" / "accessibility.spec.ts").write_text( - "// a11y\n" - ) + (tmp_path / "frontend" / "tests" / "e2e" / "accessibility.spec.ts").write_text("// a11y\n") # ── parse_remote_url ─────────────────────────────────────────────────────────