summaryrefslogtreecommitdiff
path: root/test/webrick
diff options
context:
space:
mode:
authorryan <ryan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-12 21:53:31 +0000
committerryan <ryan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-12 21:53:31 +0000
commitb404cbac7723558f42865ff78ed79aa313a72d9e (patch)
tree9c3eb87523e2008453f3c0c9776281ba6486ea44 /test/webrick
parent4c703e3d47743a8364a1aaed9fc68420263ba14a (diff)
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
Diffstat (limited to 'test/webrick')
-rw-r--r--test/webrick/test_filehandler.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/webrick/test_filehandler.rb b/test/webrick/test_filehandler.rb
index 9dfd9c28ff..7ab86a8fb7 100644
--- a/test/webrick/test_filehandler.rb
+++ b/test/webrick/test_filehandler.rb
@@ -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