diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-05-13 12:05:22 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-05-13 12:05:22 -0700 |
commit | 19b9f7ba334108bd669ec6ae3bdf11d707a7d689 (patch) | |
tree | 4ed1ad2883bb8d23cdd4f909ca337ddf8cee257a /activesupport/test | |
parent | d53b5f073924e8b397ec86f7ad092aa0b5ed3fe4 (diff) | |
download | rails-19b9f7ba334108bd669ec6ae3bdf11d707a7d689.tar.gz rails-19b9f7ba334108bd669ec6ae3bdf11d707a7d689.tar.bz2 rails-19b9f7ba334108bd669ec6ae3bdf11d707a7d689.zip |
pass the actual filter, not a string
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/callbacks_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/callbacks_test.rb b/activesupport/test/callbacks_test.rb index 091fe90bcc..68878c0189 100644 --- a/activesupport/test/callbacks_test.rb +++ b/activesupport/test/callbacks_test.rb @@ -718,7 +718,7 @@ module CallbacksTest def test_termination_invokes_hook terminator = CallbackTerminator.new terminator.save - assert_equal ":second", terminator.halted + assert_equal :second, terminator.halted end def test_block_never_called_if_terminated |