Skip to content

style(tests): black-format test_a2a_protocol.py - #77

Open
github-actions[bot] wants to merge 1 commit into
fix/test-backend-lifespanfrom
claude-auto-fix-ci-fix/test-backend-lifespan-29817321391
Open

style(tests): black-format test_a2a_protocol.py#77
github-actions[bot] wants to merge 1 commit into
fix/test-backend-lifespanfrom
claude-auto-fix-ci-fix/test-backend-lifespan-29817321391

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

Root cause

black --check failed on services/orchestrator/tests/test_a2a_protocol.py because line 7 was 94 characters — 6 over black's default 88-char limit:

# before (94 chars)
pytestmark = pytest.mark.skip(reason="bespoke a2a_protocol superseded by #73; retire per #76")

Fix

Break the reason= kwarg onto its own indented line so black is satisfied:

# after
pytestmark = pytest.mark.skip(
    reason="bespoke a2a_protocol superseded by #73; retire per #76"
)

No logic changes — formatting only.

Fixes the lint-and-test-backend CI failure on #72.

Line 7 was 94 chars; black's 88-char limit required the skip reason= kwarg
to be on its own indented line.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
@github-actions
github-actions Bot requested a review from izzywdev as a code owner July 21, 2026 09:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants