diff options
author | Xavier Noria <fxn@hashref.com> | 2012-12-07 11:52:42 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-12-07 11:52:42 -0800 |
commit | 9cb91f93295785dd393023223976101a8dafef03 (patch) | |
tree | 0a4195fa8ce31c21bec08bf28b495d10221a8d89 /actionpack/test/controller/log_subscriber_test.rb | |
parent | 85f4956fad22e1e039149a76db962157112679b6 (diff) | |
parent | a53a7bea8096a163876bb9961deb60f6c96b1493 (diff) | |
download | rails-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.rb | 2 |
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 |