Skip to content

Commit

Permalink
maybe fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Nov 10, 2023
1 parent 64185cb commit 7d2db62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tests/test_nanoarrow_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import pyarrow as pa

import nanoarrow as na
import nanoarrow.device as na_device
from nanoarrow import device


def test_cpu_device():
Expand All @@ -30,7 +30,7 @@ def test_cpu_device():

pa_array = pa.array([1, 2, 3])

darray = na_device.device_array(pa_array)
darray = device.device_array(pa_array)
assert darray.device_type == 1
assert darray.device_id == 0
assert darray.array.length == 3

0 comments on commit 7d2db62

Please sign in to comment.