about summary refs log tree commit homepage
path: root/test/test_middleware_unicorn.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_middleware_unicorn.rb')
-rw-r--r--test/test_middleware_unicorn.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_middleware_unicorn.rb b/test/test_middleware_unicorn.rb
index 0a506e5..805c559 100644
--- a/test/test_middleware_unicorn.rb
+++ b/test/test_middleware_unicorn.rb
@@ -24,7 +24,7 @@ class TestMiddlewareUnicorn < Test::Unit::TestCase
     s = TCPSocket.new @host, @port
     s.write "GET /_raindrops HTTP/1.0\r\n\r\n"
     resp = s.read
-    head, body = resp.split /\r\n\r\n/, 2
+    _, body = resp.split(/\r\n\r\n/, 2)
     assert_match %r{^#@addr_regexp active: 1$}, body
     assert_match %r{^#@addr_regexp queued: 0$}, body
   end