aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/base_tests.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/base_tests.rb')
-rw-r--r--actionpack/test/controller/base_tests.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/base_tests.rb b/actionpack/test/controller/base_tests.rb
index e442a95816..ef0a9ab69d 100644
--- a/actionpack/test/controller/base_tests.rb
+++ b/actionpack/test/controller/base_tests.rb
@@ -19,7 +19,7 @@ module Controllers
def public_action
end
- hide_actions :hidden_action
+ hide_action :hidden_action
def hidden_action
end
@@ -38,7 +38,7 @@ module Controllers
def public_action
end
- hide_actions :hidden_action
+ hide_action :hidden_action
def hidden_action
end
end