diff --git a/activesupport/test/concern_test.rb b/activesupport/test/concern_test.rb index 40f27ef4e9..28d95514b9 100644 --- a/activesupport/test/concern_test.rb +++ b/activesupport/test/concern_test.rb @@ -13,11 +13,11 @@ class ConcernTest < ActiveSupport::TestCase end def included_ran=(value) - @@included_ran = value + @included_ran = value end def included_ran - @@included_ran + @included_ran end end