From 2730abefcf32188b4a348efd22cd30cc442b45ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20W=C3=B6rtwein?= Date: Wed, 19 Jul 2023 14:38:16 -0400 Subject: [PATCH] Fix nightly, yet again --- tests/test_errors.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_errors.py b/tests/test_errors.py index f507302a6..98568cc63 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -14,11 +14,6 @@ class Foo: raise errors.AbstractMethodError(Foo) -def test_accessor_registration_warning() -> None: - with pytest.warns(errors.AccessorRegistrationWarning): - warnings.warn("", errors.AccessorRegistrationWarning) - - def test_dtype_warning() -> None: with pytest.warns(errors.DtypeWarning): warnings.warn("", errors.DtypeWarning)