aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/action_pack_assertions_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/action_pack_assertions_test.rb')
-rw-r--r--actionpack/test/controller/action_pack_assertions_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/action_pack_assertions_test.rb b/actionpack/test/controller/action_pack_assertions_test.rb
index 6d5ade98bf..ed4ed7ca62 100644
--- a/actionpack/test/controller/action_pack_assertions_test.rb
+++ b/actionpack/test/controller/action_pack_assertions_test.rb
@@ -87,7 +87,7 @@ class ActionPackAssertionsController < ActionController::Base
def errors
Class.new do
- def full_messages; '...stuff...'; end
+ def full_messages; []; end
end.new
end
@@ -106,7 +106,7 @@ class ActionPackAssertionsController < ActionController::Base
def errors
Class.new do
- def full_messages; '...stuff...'; end
+ def full_messages; ['...stuff...']; end
end.new
end
end.new