aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/base_test.rb
diff options
context:
space:
mode:
authorJustin S. Leitgeb <justin@stackbuilders.com>2012-03-10 15:48:55 -0500
committerJustin S. Leitgeb <justin@stackbuilders.com>2012-03-10 15:48:55 -0500
commitda1a9203b42a67bb81d39319c7ecb99be48b20a3 (patch)
tree992c2de4cb71a03e839fdaf574e8f334c8d1ff4a /actionmailer/test/base_test.rb
parent4751a699c9d20118e84dd657a96282329fc8bf85 (diff)
downloadrails-da1a9203b42a67bb81d39319c7ecb99be48b20a3.tar.gz
rails-da1a9203b42a67bb81d39319c7ecb99be48b20a3.tar.bz2
rails-da1a9203b42a67bb81d39319c7ecb99be48b20a3.zip
Fix actionmailer tests broken by #4751a69
Diffstat (limited to 'actionmailer/test/base_test.rb')
-rw-r--r--actionmailer/test/base_test.rb2
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