aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/log_subscriber_test.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-12-07 11:52:42 -0800
committerXavier Noria <fxn@hashref.com>2012-12-07 11:52:42 -0800
commit9cb91f93295785dd393023223976101a8dafef03 (patch)
tree0a4195fa8ce31c21bec08bf28b495d10221a8d89 /actionpack/test/controller/log_subscriber_test.rb
parent85f4956fad22e1e039149a76db962157112679b6 (diff)
parenta53a7bea8096a163876bb9961deb60f6c96b1493 (diff)
downloadrails-9cb91f93295785dd393023223976101a8dafef03.tar.gz
rails-9cb91f93295785dd393023223976101a8dafef03.tar.bz2
rails-9cb91f93295785dd393023223976101a8dafef03.zip
Merge pull request #8455 from frodsan/actionize
Actionize: Use `_action` callbacks in documentation and code
Diffstat (limited to 'actionpack/test/controller/log_subscriber_test.rb')
-rw-r--r--actionpack/test/controller/log_subscriber_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/log_subscriber_test.rb b/actionpack/test/controller/log_subscriber_test.rb
index d8b971f963..929545fc10 100644
--- a/actionpack/test/controller/log_subscriber_test.rb
+++ b/actionpack/test/controller/log_subscriber_test.rb
@@ -13,7 +13,7 @@ module Another
head :status => 406
end
- before_filter :redirector, :only => :never_executed
+ before_action :redirector, only: :never_executed
def never_executed
end