Skip to content

Commit 4d46206

Browse files
committed
fixed input to filterwarnings in test_loc.py
1 parent 9ff8871 commit 4d46206

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/tests/indexing/test_loc.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -2068,10 +2068,8 @@ def test_loc_setitem_with_expansion_inf_upcast_empty(self):
20682068
tm.assert_index_equal(result, expected)
20692069

20702070
@pytest.mark.filterwarnings(
2071-
[
2072-
"ignore:indexing past lexsort depth",
2073-
"ignore:Passing an empty string to Timestamp",
2074-
]
2071+
"ignore:indexing past lexsort depth",
2072+
"ignore:Passing an empty string to Timestamp",
20752073
)
20762074
def test_loc_setitem_with_expansion_nonunique_index(self, index):
20772075
# GH#40096

0 commit comments

Comments
 (0)