From 3791b4a10f418bb1a6cb924e77a3b7fbc27ac664 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 07:35:54 +0000 Subject: [PATCH] fix: resolve CI/CD workflow issues --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 1878985..0535075 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -74,7 +74,7 @@ class TestCLIDoc: def test_doc_writes_to_file(self): with runner.isolated_filesystem(): - schema_content = '{"title": "Test", "type": "object", "properties": {}}' + schema_content = '''{"title": "Test", "type": "object", "properties": {}}''' with open("schema.json", "w") as f: f.write(schema_content)