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.

This commit is contained in:
gulsumgudukbay 2025-04-09 03:16:38 +00:00
parent 75fc650d0b
commit 84698197d7

View File

@ -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,