aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/deprecated_instance_variables_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/deprecated_instance_variables_test.rb')
-rw-r--r--actionpack/test/controller/deprecated_instance_variables_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/test/controller/deprecated_instance_variables_test.rb b/actionpack/test/controller/deprecated_instance_variables_test.rb
index f8b8f4352b..7865a69e30 100644
--- a/actionpack/test/controller/deprecated_instance_variables_test.rb
+++ b/actionpack/test/controller/deprecated_instance_variables_test.rb
@@ -12,9 +12,9 @@ class DeprecatedControllerInstanceVariablesTest < Test::Unit::TestCase
end
ActionController::Base::DEPRECATED_INSTANCE_VARIABLES.each do |var|
- class_eval "def old_#{var}; render :text => @#{var}.inspect end"
- class_eval "def new_#{var}; render :text => #{var}.inspect end"
- class_eval "def internal_#{var}; render :text => @_#{var}.inspect end"
+ class_eval "def old_#{var}; render :text => @#{var}.to_s end"
+ class_eval "def new_#{var}; render :text => #{var}.to_s end"
+ class_eval "def internal_#{var}; render :text => @_#{var}.to_s end"
end
def rescue_action(e) raise e end