From 2b238d1d23eb3267fd46bfc54611a1e959b29b2b Mon Sep 17 00:00:00 2001 From: Timmy Time Date: Tue, 24 Mar 2026 01:27:38 +0000 Subject: [PATCH] [loop-cycle-1] fix: ruff format error on test_autoresearch.py (#1256) (#1257) --- tests/timmy/test_autoresearch.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/timmy/test_autoresearch.py b/tests/timmy/test_autoresearch.py index ce9fd0e..a4c9e85 100644 --- a/tests/timmy/test_autoresearch.py +++ b/tests/timmy/test_autoresearch.py @@ -12,15 +12,19 @@ class TestAppleSiliconHelpers: def test_is_apple_silicon_true_on_arm64_darwin(self): from timmy.autoresearch import is_apple_silicon - with patch("timmy.autoresearch.platform.system", return_value="Darwin"), \ - patch("timmy.autoresearch.platform.machine", return_value="arm64"): + with ( + patch("timmy.autoresearch.platform.system", return_value="Darwin"), + patch("timmy.autoresearch.platform.machine", return_value="arm64"), + ): assert is_apple_silicon() is True def test_is_apple_silicon_false_on_linux(self): from timmy.autoresearch import is_apple_silicon - with patch("timmy.autoresearch.platform.system", return_value="Linux"), \ - patch("timmy.autoresearch.platform.machine", return_value="x86_64"): + with ( + patch("timmy.autoresearch.platform.system", return_value="Linux"), + patch("timmy.autoresearch.platform.machine", return_value="x86_64"), + ): assert is_apple_silicon() is False def test_build_env_auto_resolves_mlx_on_apple_silicon(self):