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

remove string literal concatenation

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-10-25 10:07:22 +00:00
parent acd82f6e24
commit db1f7079b6
16 changed files with 35 additions and 44 deletions

View file

@ -560,7 +560,7 @@ FOO
end
assert_nothing_raised do
eval "x = <<""FOO\r\n1\r\nFOO"
eval "x = <\<FOO\r\n1\r\nFOO"
end
assert_equal("1\n", x)
end