From ae5a32290f7d4f9c32f4edbbe5d9e21cd7e043f2 Mon Sep 17 00:00:00 2001 From: Timothy Date: Sat, 5 Sep 2026 06:29:54 +0200 Subject: [PATCH] style(885): ruff format the assertion the previous commit wrapped by hand `ruff format --check` is part of the local gate for touched Python and the predecessor of this file passed it; one new assertion was hand-wrapped across lines that fit on one. Refs #885 Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_015QqCpYFsKgnAnx6jVwrKiV --- scripts/tests/test_ci_toolchain_image_resolves.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/tests/test_ci_toolchain_image_resolves.py b/scripts/tests/test_ci_toolchain_image_resolves.py index 1823c0e3b..c36c79a47 100644 --- a/scripts/tests/test_ci_toolchain_image_resolves.py +++ b/scripts/tests/test_ci_toolchain_image_resolves.py @@ -427,9 +427,7 @@ def test_a_token_endpoint_that_ANSWERED_is_asked_ONCE(preflight, codes): preflight.set_codes({"*": "200", **codes}) result = preflight.run() assert result.returncode != 0 - assert len(preflight.token_calls()) <= 1, ( - f"a settled token leg must not be re-asked, got {preflight.calls()}" - ) + assert len(preflight.token_calls()) <= 1, f"a settled token leg must not be re-asked, got {preflight.calls()}" assert len(preflight.manifest_calls()) == 1, ( f"nor may the manifest read be retried behind it, got {preflight.calls()}" )