From 60451d7fa37bb64eb3a5f9f24bc95ca401842c7b Mon Sep 17 00:00:00 2001 From: opencode-agent Date: Wed, 5 Aug 2026 03:36:59 +0000 Subject: [PATCH] fix(ci): reformat test_project_status.py string literals --- tests/test_project_status.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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 ─────────────────────────────────────────────────────────