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.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_middleware_unicorn.rb b/test/test_middleware_unicorn.rb
index 7949f78..0a506e5 100644
--- a/test/test_middleware_unicorn.rb
+++ b/test/test_middleware_unicorn.rb
@@ -6,9 +6,9 @@ class TestMiddlewareUnicorn < Test::Unit::TestCase
 
   def setup
     @host = ENV["UNICORN_TEST_ADDR"] || "127.0.0.1"
-    sock = TCPServer.new @host, 0
-    @port = sock.addr[1]
-    ENV["UNICORN_FD"] = sock.fileno.to_s
+    @sock = TCPServer.new @host, 0
+    @port = @sock.addr[1]
+    ENV["UNICORN_FD"] = @sock.fileno.to_s
     @host_with_port = "#@host:#@port"
     @opts = { :listeners => [ @host_with_port ] }
     @addr_regexp = Regexp.escape @host_with_port