From 36f51ca67ebf4737a994e29a61e402c86aca87d1 Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Tue, 17 Jun 2025 14:27:53 -0400 Subject: [PATCH] fix: Typo in 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 e0a502a..ccf22bb 100644 --- a/tests/test_polysolve.py +++ b/tests/test_polysolve.py @@ -92,7 +92,7 @@ def test_function_multiplication(m_func_1, m_func_2): # (2x^2 + 3x + 1) * (5x -4) = 10x^3 + 7x^2 - 7x -4 result = m_func_1 * m_func_2 assert result.largest_exponent == 3 - assert np.array_equal(result.coefficients, [19, 7, -7, -4]) + assert np.array_equal(result.coefficients, [10, 7, -7, -4]) # --- Genetic Algorithm Root-Finding Tests ---