Skip to content

Commit

Permalink
fix MacPython pandas-wheels failue (pandas-dev#24851)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjayhawkins authored and Pingviinituutti committed Feb 28, 2019
1 parent 3af140c commit 3ad5a5e
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 3ad5a5e

Please sign in to comment.