Skip to content

Commit 01e7872

Browse files
simonjayhawkinsjreback
authored andcommitted
fix MacPython pandas-wheels failue (#24851)
1 parent af82b2a commit 01e7872

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/reshape/test_concat.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,8 @@ def test_append_different_columns_types_raises(
975975
msg = (r"unorderable types: (Interval|int)\(\) > "
976976
r"(int|long|float|str)\(\)|"
977977
r"Expected tuple, got (int|long|float|str)|"
978-
r"Cannot compare type 'Timestamp' with type '(int|long)'")
978+
r"Cannot compare type 'Timestamp' with type '(int|long)'|"
979+
r"'>' not supported between instances of 'int' and 'str'")
979980
with pytest.raises(TypeError, match=msg):
980981
df.append(ser)
981982

0 commit comments

Comments
 (0)