提交 5a41e6b0 编写于 作者: A Akira Matsuda

Unused variables

上级 f213e926
......@@ -378,10 +378,10 @@ def test_only_set_charset_still_defaults_to_text_html
app = lambda { |env| @response.to_a }
env = Rack::MockRequest.env_for("/")
status, headers, body = app.call(env)
_status, headers, _body = app.call(env)
assert_nil headers["Content-Length"]
status, headers, body = Rack::ContentLength.new(app).call(env)
_status, headers, _body = Rack::ContentLength.new(app).call(env)
assert_equal "5", headers["Content-Length"]
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册