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

expected message should come first

This commit is contained in:
Neeraj Singh 2011-06-11 02:52:13 -04:00
parent 5da89af6f6
commit 6688b6393a

View file

@ -293,8 +293,8 @@ module AbstractController
first_class.default_url_options[:host] = first_host first_class.default_url_options[:host] = first_host
second_class.default_url_options[:host] = second_host second_class.default_url_options[:host] = second_host
assert_equal first_class.default_url_options[:host], first_host assert_equal first_host, first_class.default_url_options[:host]
assert_equal second_class.default_url_options[:host], second_host assert_equal second_host, second_class.default_url_options[:host]
end end
def test_with_stringified_keys def test_with_stringified_keys