From 80826c3b343d146f0964439d67a3d231d8b2cfa8 Mon Sep 17 00:00:00 2001 From: Vipul A M Date: Sun, 21 Jul 2013 01:00:36 +0530 Subject: [PATCH] suppress unused variable warning --- test/response_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/response_test.rb b/test/response_test.rb index 9ab1f0df..f9feb024 100644 --- a/test/response_test.rb +++ b/test/response_test.rb @@ -37,7 +37,7 @@ class ResponseTest < Test::Unit::TestCase it 'Calculates the Content-Length using the bytesize of the body' do @response.body = ['Hello', 'World!', '✈'] - status, headers, body = @response.finish + _, headers, body = @response.finish assert_equal '14', headers['Content-Length'] assert_same_body @response.body, body end