diff options
author | Lucas Mazza <lucastmazza@gmail.com> | 2015-08-14 14:20:51 -0300 |
---|---|---|
committer | Lucas Mazza <lucastmazza@gmail.com> | 2015-08-14 14:20:51 -0300 |
commit | 549c68118441a2538907655bfd3f7dd9cfe35072 (patch) | |
tree | 84f1517439a5172c1a38592e26de01e4ef399c58 /activesupport/lib | |
parent | 9876a16904f817e11713bc85479dd70da1de454b (diff) | |
download | rails-549c68118441a2538907655bfd3f7dd9cfe35072.tar.gz rails-549c68118441a2538907655bfd3f7dd9cfe35072.tar.bz2 rails-549c68118441a2538907655bfd3f7dd9cfe35072.zip |
[ci skip] Add missing `super` to the setup of the `ActiveSupport::LogSubscriber::TestHelper` example.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/log_subscriber/test_helper.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/log_subscriber/test_helper.rb b/activesupport/lib/active_support/log_subscriber/test_helper.rb index 75f353f62c..38b3b1f960 100644 --- a/activesupport/lib/active_support/log_subscriber/test_helper.rb +++ b/activesupport/lib/active_support/log_subscriber/test_helper.rb @@ -11,6 +11,7 @@ module ActiveSupport # include ActiveSupport::LogSubscriber::TestHelper # # def setup + # super # ActiveRecord::LogSubscriber.attach_to(:active_record) # end # |