From ffb2a4f9eac0b52a491e783c2f1646a34bafbb4c Mon Sep 17 00:00:00 2001 From: Bill Riehl Date: Tue, 3 Dec 2024 16:55:25 -0500 Subject: [PATCH] ruff format tests --- tests/test_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_app.py b/tests/test_app.py index cca9c59a..c1fcd8d8 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -1192,7 +1192,7 @@ async def test_bulk_specification_dts_fail_wrong_format(): fu.make_dir("testuser/dts_folder") # testuser is hardcoded in the auth mock base = Path(fu.base_dir) / "testuser" manifest = "test_manifest.json" - manifest_data = [ "wrong", "format" ] + manifest_data = ["wrong", "format"] with open(base / manifest, "w", encoding="utf-8") as f: json.dump(manifest_data, f) resp = await cli.get(f"bulk_specification/?files={manifest}&dts=1") @@ -1203,7 +1203,7 @@ async def test_bulk_specification_dts_fail_wrong_format(): "type": "cannot_parse_file", "file": f"testuser/{manifest}", "message": "Manifest is not a dictionary", - "tab": None + "tab": None, } ] }