aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/url_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template/url_helper_test.rb')
-rw-r--r--actionpack/test/template/url_helper_test.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb
index 9de510d0a4..cb0e3fe2e2 100644
--- a/actionpack/test/template/url_helper_test.rb
+++ b/actionpack/test/template/url_helper_test.rb
@@ -58,7 +58,6 @@ class UrlHelperTest < Test::Unit::TestCase
end
def test_link_with_nil_html_options
- assert "<a href=\"http://www.world.com\">Hello</a>",
- link_to("Hello", {:action => 'myaction'}, nil)
+ assert_equal "<a href=\"http://www.world.com\">Hello</a>", link_to("Hello", {:action => 'myaction'}, nil)
end
end