Skip to content

Commit

Permalink
test: ensure test fails on main
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Jan 9, 2023
1 parent 06e1211 commit cf3abfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_0733_run_lengths.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ def test():


def test_all_same():
array = ak.Array([[3, 3, 3, 3], [3], [], [3, 3, 3], [3, 3, 3, 3]])
array = ak.Array([[3, 3, 3, 3], [3], [], [3, 3, 3], [3]])
assert ak.operations.run_lengths(array).to_list() == [
[4],
[1],
[],
[3],
[4],
[1],
]


Expand Down

0 comments on commit cf3abfb

Please sign in to comment.