From 03e9bb8077b2f0f5a6f211623a9373ea2b31f382 Mon Sep 17 00:00:00 2001 From: Patrick Hoefler <61934744+phofl@users.noreply.github.com> Date: Fri, 8 Dec 2023 00:22:04 +0100 Subject: [PATCH] CoW: Remove filterwarnings and todo --- pandas/tests/frame/test_subclass.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandas/tests/frame/test_subclass.py b/pandas/tests/frame/test_subclass.py index f19e31002c877..ef78ae62cb4d6 100644 --- a/pandas/tests/frame/test_subclass.py +++ b/pandas/tests/frame/test_subclass.py @@ -524,8 +524,6 @@ def test_subclassed_wide_to_long(self): tm.assert_frame_equal(long_frame, expected) - # TODO(CoW-warn) should not need to warn - @pytest.mark.filterwarnings("ignore:Setting a value on a view:FutureWarning") def test_subclassed_apply(self): # GH 19822