diff --git a/test/helpers/html_helper_test.rb b/test/helpers/html_helper_test.rb index b2536b5c4..e6389a5fa 100644 --- a/test/helpers/html_helper_test.rb +++ b/test/helpers/html_helper_test.rb @@ -1,7 +1,7 @@ require "test_helper" class HtmlHelperTest < ActionView::TestCase - test "converts URLs into anchor tags" do + test "convert URLs into anchor tags" do assert_equal_html \ %(
Check this: https://example.com
), format_html("Check this: https://example.com
") @@ -10,7 +10,7 @@ class HtmlHelperTest < ActionView::TestCase format_html("Check this: https://example.com/
") end - test "does not include punctuation in URL autolinking" do + test "don't' include punctuation in URL autolinking" do assert_equal_html \ %(Check this: https://example.com!
), format_html("Check this: https://example.com!
") @@ -37,7 +37,7 @@ class HtmlHelperTest < ActionView::TestCase format_html("Check this: https://example.com
") end - test "converts email addresses into mailto links" do + test "convert email addresses into mailto links" do assert_equal_html \ %(Contact us at support@example.com
), format_html("Contact us at support@example.com
")