1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Rename variable to represent type

per comments from CR
This commit is contained in:
James Dabbs 2019-05-05 10:29:31 -07:00
parent 9f96d094a3
commit 80af2c5831

View file

@ -30,7 +30,7 @@ class ActionMailbox::Base::RoutingTest < ActiveSupport::TestCase
end
test "mailbox_for" do
mail = create_inbound_email_from_fixture "welcome.eml", status: :pending
assert_equal RepliesMailbox, ApplicationMailbox.mailbox_for(mail)
inbound_email = create_inbound_email_from_fixture "welcome.eml", status: :pending
assert_equal RepliesMailbox, ApplicationMailbox.mailbox_for(inbound_email)
end
end