diff options
-rw-r--r-- | test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 "<p>#{expected}</p>", @formatter.new(text).to_html + assert_equal "<p>#{expected}</p>", @formatter.new(text).to_html, "Formatting the following text failed:\n===\n#{text}\n===\n" end end end |