suppress unused variable warning

This commit is contained in:
Vipul A M 2013-07-21 01:00:36 +05:30
parent c1fbe4e756
commit 80826c3b34
1 changed files with 1 additions and 1 deletions

View File

@ -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