Skip to content

Commit 5bcf4d5

Browse files
authored
Revert FutureWarning check (#48468)
1 parent f3b4490 commit 5bcf4d5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/frame/methods/test_update.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ def test_update_from_non_df(self):
136136
def test_update_datetime_tz(self):
137137
# GH 25807
138138
result = DataFrame([pd.Timestamp("2019", tz="UTC")])
139-
with tm.assert_produces_warning(FutureWarning):
140-
result.update(result)
139+
result.update(result)
141140
expected = DataFrame([pd.Timestamp("2019", tz="UTC")])
142141
tm.assert_frame_equal(result, expected)
143142

0 commit comments

Comments
 (0)