We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2acbc4 commit c7958e0Copy full SHA for c7958e0
pandas/tests/frame/methods/test_update.py
@@ -211,5 +211,5 @@ def test_update_raises_on_duplicate_argument_index(self):
211
# GH#55509
212
df = DataFrame({"a": [True, True]}, index=[1, 2])
213
other = DataFrame({"a": [False, False]}, index=[1, 1])
214
- with pytest.raises(ValueError, match="duplicate argument index"):
+ with pytest.raises(ValueError, match="duplicate index"):
215
df.update(other)
0 commit comments