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

Simple fix for emacs parsing. (emacs doesn't like _heredocs_)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30530 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ryan 2011-01-12 21:53:31 +00:00
parent 4c703e3d47
commit b404cbac77

View file

@ -22,11 +22,11 @@ class WEBrick::TestFileHandler < Test::Unit::TestCase
end
def make_range_request(range_spec)
msg = <<-_end_of_request_
msg = <<-END_OF_REQUEST
GET / HTTP/1.0
Range: #{range_spec}
_end_of_request_
END_OF_REQUEST
return StringIO.new(msg.gsub(/^ {6}/, ""))
end