Skip to content

Commit 5380aba

Browse files
committed
Fixed regex modified during pre-commit
1 parent 5e69871 commit 5380aba

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/arrays/string_/test_string.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,7 @@ def test_add_frame_invalid(dtype, invalid):
338338

339339
if dtype.storage == "pyarrow":
340340
if invalid == pd.Categorical(["test"]):
341-
msg = (
342-
"Incompatible type found when converting "
343-
"to PyArrow dtype for operation."
344-
)
341+
msg = "Incompatible type when converting to PyArrow dtype for operation."
345342
else:
346343
msg = (
347344
"Can only add string arrays to dtypes "

0 commit comments

Comments
 (0)