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)