From 84698197d761b385f09856ea1b1761903a878a76 Mon Sep 17 00:00:00 2001 From: gulsumgudukbay Date: Wed, 9 Apr 2025 03:16:38 +0000 Subject: [PATCH] Having ignore warning decorator before the parameterized test decorator gives an error that tells the ignorewarning decorator hinders the parameterized test creation, hence no tests are ran for testToeplitzConstruction. The extra decorator is removed as Ruturaj created an ignorewarning statement in a finer granularity. --- tests/linalg_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/linalg_test.py b/tests/linalg_test.py index bc8d0e845..1f294bdb0 100644 --- a/tests/linalg_test.py +++ b/tests/linalg_test.py @@ -2005,7 +2005,6 @@ class ScipyLinalgTest(jtu.JaxTestCase): self.assertAllClose(root, expected, check_dtypes=False) - @jtu.ignore_warning(category=FutureWarning, message="Don't treat future SciPy warning as error") @jtu.sample_product( cshape=[(), (4,), (8,), (3, 7), (0, 5, 1)], cdtype=float_types + complex_types,