We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5afc90e commit b72c5a7Copy full SHA for b72c5a7
pandas/tests/frame/methods/test_update.py
@@ -136,7 +136,8 @@ 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
- result.update(result)
+ with tm.assert_produces_warning(FutureWarning):
140
+ result.update(result)
141
expected = DataFrame([pd.Timestamp("2019", tz="UTC")])
142
tm.assert_frame_equal(result, expected)
143
0 commit comments