test/test-array.rb in red-arrow-2.0.0 vs test/test-array.rb in red-arrow-3.0.0
- old
+ new
@@ -158,11 +158,11 @@
@array.is_in(right))
end
test("Arrow::ChunkedArray") do
chunks = [
- Arrow::Int16Array.new([1, 0]),
- Arrow::Int16Array.new([1, 0, 3])
+ Arrow::Int16Array.new([1, 4]),
+ Arrow::Int16Array.new([0, 3])
]
right = Arrow::ChunkedArray.new(chunks)
assert_equal(Arrow::BooleanArray.new([true, true, true, false]),
@array.is_in(right))
end