Skip to content

Commit

Permalink
test: specify dtypes
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Sep 27, 2023
1 parent 03b777d commit 814ea10
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_2724_expected_from_buffers_recursive.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@

# 6.6 and 7.7 are inaccessible
layout = ak.contents.listoffsetarray.ListOffsetArray(
ak.index.Index(np.array([1, 4, 4, 6])),
ak.contents.numpyarray.NumpyArray(np.array([6.6, 1.1, 2.2, 3.3, 4.4, 5.5, 7.7])),
ak.index.Index(np.array([1, 4, 4, 6], dtype=np.int64)),
ak.contents.numpyarray.NumpyArray(
np.array([6.6, 1.1, 2.2, 3.3, 4.4, 5.5, 7.7], dtype=np.float64)
),
)


Expand Down

0 comments on commit 814ea10

Please sign in to comment.