We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e1f5b commit 71a9966Copy full SHA for 71a9966
1 file changed
python/tests/test_dataframe.py
@@ -1624,7 +1624,8 @@ def test_iter_batches_dataframe(fail_collect):
1624
1625
expected = [batch1, batch2]
1626
for got, exp in zip(df, expected):
1627
- assert got.equals(exp)
+ assert isinstance(got, RecordBatch)
1628
+ assert got.to_pyarrow().equals(exp)
1629
1630
1631
def test_arrow_c_stream_to_table_and_reader(fail_collect):
0 commit comments