test/tc/splitlines.rb in rio-0.4.2 vs test/tc/splitlines.rb in rio-0.5.1

- old
+ new

@@ -23,10 +23,10 @@ exp = @str.split(',') assert_equal(exp,ans) ans = rio(@infile).chomp.split(',').get exp = @str.chop exp = exp.split(',') - assert(exp,ans) + assert_equal(exp,ans) end def test_each exp = @str.chomp.split(',') @infile.chomp.split(',') { |ary| assert_equal(exp,ary)