aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract/render_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/abstract/render_test.rb')
-rw-r--r--actionpack/test/abstract/render_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/abstract/render_test.rb b/actionpack/test/abstract/render_test.rb
index 45a4763fe4..be0478b638 100644
--- a/actionpack/test/abstract/render_test.rb
+++ b/actionpack/test/abstract/render_test.rb
@@ -4,7 +4,7 @@ module AbstractController
module Testing
class ControllerRenderer < AbstractController::Base
- include AbstractController::RenderingController
+ include AbstractController::Rendering
self.view_paths = [ActionView::FixtureResolver.new(
"default.erb" => "With Default",
@@ -38,7 +38,7 @@ module AbstractController
end
def object
- render :_template => ActionView::TextTemplate.new("With Object")
+ render :_template => ActionView::Template::Text.new("With Object")
end
end