Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pandas/tests/reshape/test_concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,8 @@ def test_append_different_columns_types_raises(
msg = (r"unorderable types: (Interval|int)\(\) > "
r"(int|long|float|str)\(\)|"
r"Expected tuple, got (int|long|float|str)|"
r"Cannot compare type 'Timestamp' with type '(int|long)'")
r"Cannot compare type 'Timestamp' with type '(int|long)'|"
r"'>' not supported between instances of 'int' and 'str'")
with pytest.raises(TypeError, match=msg):
df.append(ser)

Expand Down