test/test-column.rb in red-arrow-0.4.1 vs test/test-column.rb in red-arrow-0.8.0

- old
+ new

@@ -12,14 +12,14 @@ # See the License for the specific language governing permissions and # limitations under the License. class ColumnTest < Test::Unit::TestCase test("#each") do - arrayes = [ + arrays = [ Arrow::BooleanArray.new([true, false]), Arrow::BooleanArray.new([nil, true]), ] - chunked_array = Arrow::ChunkedArray.new(arrayes) + chunked_array = Arrow::ChunkedArray.new(arrays) column = Arrow::Column.new(Arrow::Field.new("visible", :boolean), chunked_array) assert_equal([true, false, nil, true], column.to_a) end