Skip to content

Commit de39ac0

Browse files
committed
passes git diff upstream
1 parent 52eba9f commit de39ac0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/series/indexing/test_indexing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@ def test_incorrect_assigment():
396396
y = pd.Series(range(2))
397397

398398
msg = (
399-
"shape mismatch: value array of shape \(2,2\) could not be"
400-
" broadcast to indexing result of shape \(2,\)"
399+
r"shape mismatch: value array of shape \(2,2\) could not be"
400+
r" broadcast to indexing result of shape \(2,\)"
401401
)
402402
with pytest.raises(ValueError, match=msg):
403403
y.loc[range(2)] = x

0 commit comments

Comments
 (0)