We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af82b2a commit 01e7872Copy full SHA for 01e7872
pandas/tests/reshape/test_concat.py
@@ -975,7 +975,8 @@ def test_append_different_columns_types_raises(
975
msg = (r"unorderable types: (Interval|int)\(\) > "
976
r"(int|long|float|str)\(\)|"
977
r"Expected tuple, got (int|long|float|str)|"
978
- r"Cannot compare type 'Timestamp' with type '(int|long)'")
+ r"Cannot compare type 'Timestamp' with type '(int|long)'|"
979
+ r"'>' not supported between instances of 'int' and 'str'")
980
with pytest.raises(TypeError, match=msg):
981
df.append(ser)
982
0 commit comments