提交 e9f63c55 编写于 作者: Y Yehuda Katz

Merge pull request #3733 from kennyj/fix_warnings_for_show_exceptions_test

Warnings removed. (ambiguous first argument)
......@@ -22,7 +22,7 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest
['127.0.0.1', '127.0.0.127', '::1', '0:0:0:0:0:0:0:1', '0:0:0:0:0:0:0:1%0'].each do |ip_address|
self.remote_addr = ip_address
get '/'
assert_match /boom/, body
assert_match(/boom/, body)
end
end
......@@ -31,7 +31,7 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest
@app = ShowExceptionsController.action(:boom)
self.remote_addr = '208.77.188.166'
get '/'
assert_match /boom/, body
assert_match(/boom/, body)
end
end
......@@ -53,7 +53,7 @@ class ShowExceptionsOverridenTest < ActionDispatch::IntegrationTest
test 'show diagnostics message' do
@app = ShowExceptionsOverridenController.action(:boom)
get '/', {'detailed' => '1'}
assert_match /boom/, body
assert_match(/boom/, body)
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册