aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/filters_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/controller/filters_test.rb b/actionpack/test/controller/filters_test.rb
index 3f4f3b07be..59bff76536 100644
--- a/actionpack/test/controller/filters_test.rb
+++ b/actionpack/test/controller/filters_test.rb
@@ -189,8 +189,8 @@ class FilterTest < Test::Unit::TestCase
class MixedFilterController < PrependingController
cattr_accessor :execution_log
- def initialize(parent_controller=nil)
- super(parent_controller)
+
+ def initialize
@@execution_log = ""
end