summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-12 15:22:05 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-12 15:22:05 +0000
commitc312b8b0584a9e394433a13064450882901e457c (patch)
tree9c387bd66d0ff3771d4170065437ce49ca34dc58
parent4d19007fd18138042bfaf493a3e382c25d333fce (diff)
downloadredmine-c312b8b0584a9e394433a13064450882901e457c.tar.gz
redmine-c312b8b0584a9e394433a13064450882901e457c.zip
More detailed failures message.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3570 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb2
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