1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/csv.rb: Improved stray quoting error message (patch by Edvard Majakari).

* lib/csv.rb:  Remove debugging prints.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
jeg2 2011-05-25 14:46:08 +00:00
parent ce9d84a9f0
commit 6e7544f132
3 changed files with 36 additions and 18 deletions

View file

@ -191,7 +191,7 @@ class TestCSV::Parsing < TestCSV
assert_send([csv.lineno, :<, 4])
end
rescue CSV::MalformedCSVError
assert_equal("Illegal quoting on line 4.", $!.message)
assert_equal("Illegal quoting in line 4.", $!.message)
end
end