We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b4490 commit 5bcf4d5Copy full SHA for 5bcf4d5
pandas/tests/frame/methods/test_update.py
@@ -136,8 +136,7 @@ def test_update_from_non_df(self):
136
def test_update_datetime_tz(self):
137
# GH 25807
138
result = DataFrame([pd.Timestamp("2019", tz="UTC")])
139
- with tm.assert_produces_warning(FutureWarning):
140
- result.update(result)
+ result.update(result)
141
expected = DataFrame([pd.Timestamp("2019", tz="UTC")])
142
tm.assert_frame_equal(result, expected)
143
0 commit comments