aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base
diff options
context:
space:
mode:
authorKarunakar (Ruby) <revurikarna@gmail.com>2012-01-05 00:22:24 +0530
committerKarunakar (Ruby) <revurikarna@gmail.com>2012-01-06 00:38:46 +0530
commit00236435221a39441af3f1e76110767fba4154a8 (patch)
tree020e11b7db361cada6dc01ec785585da50a62609 /actionpack/test/controller/new_base
parentf63fff6a8492b32c5e44202b938ce5d9600faa2a (diff)
downloadrails-00236435221a39441af3f1e76110767fba4154a8.tar.gz
rails-00236435221a39441af3f1e76110767fba4154a8.tar.bz2
rails-00236435221a39441af3f1e76110767fba4154a8.zip
Moved all the logger methods to active support logger
minor
Diffstat (limited to 'actionpack/test/controller/new_base')
-rw-r--r--actionpack/test/controller/new_base/render_streaming_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/new_base/render_streaming_test.rb b/actionpack/test/controller/new_base/render_streaming_test.rb
index 1532bd5c98..61ea68e3f7 100644
--- a/actionpack/test/controller/new_base/render_streaming_test.rb
+++ b/actionpack/test/controller/new_base/render_streaming_test.rb
@@ -85,7 +85,7 @@ module RenderStreaming
test "rendering with template exception logs the exception" do
io = StringIO.new
- _old, ActionController::Base.logger = ActionController::Base.logger, Logger.new(io)
+ _old, ActionController::Base.logger = ActionController::Base.logger, ActiveSupport::Logger.new(io)
begin
get "/render_streaming/basic/template_exception"