From 4a47ff3679fd8d2480367a7ff230fe9661129496 Mon Sep 17 00:00:00 2001 From: "Ethan W." <79958715+Aronnaxx@users.noreply.github.com> Date: Fri, 8 Aug 2025 13:55:03 -0700 Subject: [PATCH] Update tests/eye_test.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tests/eye_test.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/eye_test.py b/tests/eye_test.py index d6e2087..a4db7d0 100644 --- a/tests/eye_test.py +++ b/tests/eye_test.py @@ -5,13 +5,6 @@ from mini_bdx_runtime.eyes import Eyes, LEFT_EYE_GPIO, RIGHT_EYE_GPIO eye_delay = 2.5 -@pytest.fixture -def eyes(): - """Fixture to create and cleanup Eyes instance""" - eyes_instance = Eyes() - yield eyes_instance - eyes_instance.cleanup() # Ensure cleanup after each test - def test_eyes_initialization(eyes): """Test that eyes are properly initialized""" assert eyes is not None