We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25222fa commit 8cbcbe4Copy full SHA for 8cbcbe4
pandas/tests/reshape/concat/test_datetimes.py
@@ -548,8 +548,8 @@ def test_concat_timedelta64_block():
548
df = DataFrame({"time": rng})
549
550
result = concat([df, df])
551
- tm.assert_frame_equal(result.iloc[:10], df)
552
- tm.assert_frame_equal(result.iloc[10:], df)
+ tm.assert_frame_equal(result.iloc[:10], df, check_index_type=False)
+ tm.assert_frame_equal(result.iloc[10:], df, check_index_type=False)
553
554
555
def test_concat_multiindex_datetime_nat():
0 commit comments