Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
danepitkin committed Sep 10, 2024
1 parent 10d0e24 commit f773998
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/pyarrow/tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -3611,7 +3611,8 @@ def test_recordbatch_non_cpu(cuda_context, cpu_recordbatch, cuda_recordbatch,

# add_column(), set_column() test
for fn in [cuda_recordbatch.add_column, cuda_recordbatch.set_column]:
col = pa.array([-2, -1, 0, 1, 2], pa.int8()).copy_to(cuda_context.memory_manager)
col = pa.array([-2, -1, 0, 1, 2], pa.int8()
).copy_to(cuda_context.memory_manager)
new_batch = fn(2, 'c2', col)
verify_cuda_recordbatch(
new_batch, expected_schema=schema.append(pa.field('c2', pa.int8())))
Expand Down

0 comments on commit f773998

Please sign in to comment.