diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb index a212731ca..a64690d36 100644 --- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb @@ -75,7 +75,7 @@ class Redmine::WikiFormatting::TextileFormatterTest < HelperTestCase def assert_html_output(to_test) to_test.each do |text, expected| - assert_equal "

#{expected}

", @formatter.new(text).to_html + assert_equal "

#{expected}

", @formatter.new(text).to_html, "Formatting the following text failed:\n===\n#{text}\n===\n" end end end