From 2d64208c41f706f7bf75fb7a018635bed1f362f6 Mon Sep 17 00:00:00 2001 From: AutonomyProof Date: Tue, 4 Aug 2026 22:52:59 +0530 Subject: [PATCH] Fix ruff format on AG033 test file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The final AG033 test line exceeded the line length; ruff format wraps it. CI runs 'ruff format --check' as a separate gate from 'ruff check', which is what went red on main. Formatting only — no behavior change. Signed-off-by: AutonomyProof --- tests/test_rules_agent_controls.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_rules_agent_controls.py b/tests/test_rules_agent_controls.py index c839a0d..bd0b980 100644 --- a/tests/test_rules_agent_controls.py +++ b/tests/test_rules_agent_controls.py @@ -94,7 +94,10 @@ def test_ag033_pandas_drop_clean() -> None: def test_ag033_harmless_tool_clean() -> None: - assert run_rule(IrreversibleDataDestructionRule(), "@tool\ndef summarize(t):\n return t\n") == [] + assert ( + run_rule(IrreversibleDataDestructionRule(), "@tool\ndef summarize(t):\n return t\n") + == [] + ) # --- AG009 --------------------------------------------------------------------