diff options
author | Justin S. Leitgeb <justin@stackbuilders.com> | 2012-03-10 15:48:55 -0500 |
---|---|---|
committer | Justin S. Leitgeb <justin@stackbuilders.com> | 2012-03-10 15:48:55 -0500 |
commit | da1a9203b42a67bb81d39319c7ecb99be48b20a3 (patch) | |
tree | 992c2de4cb71a03e839fdaf574e8f334c8d1ff4a /actionmailer | |
parent | 4751a699c9d20118e84dd657a96282329fc8bf85 (diff) | |
download | rails-da1a9203b42a67bb81d39319c7ecb99be48b20a3.tar.gz rails-da1a9203b42a67bb81d39319c7ecb99be48b20a3.tar.bz2 rails-da1a9203b42a67bb81d39319c7ecb99be48b20a3.zip |
Fix actionmailer tests broken by #4751a69
Diffstat (limited to 'actionmailer')
-rw-r--r-- | actionmailer/test/base_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/base_test.rb b/actionmailer/test/base_test.rb index 65550ab505..5bba0e23d3 100644 --- a/actionmailer/test/base_test.rb +++ b/actionmailer/test/base_test.rb @@ -559,7 +559,7 @@ class BaseTest < ActiveSupport::TestCase end end - assert_equal ["notify"], FooMailer.action_methods + assert_equal Set.new(["notify"]), FooMailer.action_methods end protected |