From 415e2a3ef5f6832916102b1416dfcc094133d61a Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Mon, 27 Oct 2025 10:14:58 -0400 Subject: [PATCH] fix: Remove quadratic_solve import from test --- tests/test_polysolve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_polysolve.py b/tests/test_polysolve.py index 05c6d17..432d8a2 100644 --- a/tests/test_polysolve.py +++ b/tests/test_polysolve.py @@ -8,7 +8,7 @@ try: except ImportError: _CUPY_AVAILABLE = False -from polysolve import Function, GA_Options, quadratic_solve +from polysolve import Function, GA_Options @pytest.fixture def quadratic_func() -> Function: