Skip to content

Commit

Permalink
expand test
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasdavis committed Jan 26, 2024
1 parent 327d1ff commit 3d2336a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_getitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ def test_multiarg_starting_with_string_gh454():
)
daa = dak.from_awkward(caa, npartitions=2)
assert_eq(daa["a", 0], caa["a", 0])
assert_eq(daa["a", 1], caa["a", 1])
assert_eq(daa["a", 2], caa["a", 2])
assert_eq(daa["a", 3], caa["a", 3])
assert daa.defined_divisions
with pytest.raises(ValueError, match="only works when divisions are known"):
daa["a", 0].defined_divisions

0 comments on commit 3d2336a

Please sign in to comment.