summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-12 15:19:49 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-12 15:19:49 +0000
commit4d19007fd18138042bfaf493a3e382c25d333fce (patch)
treeda8fa2bd10a61fa3f3435d5c58c4bca5a88c37a2 /test
parent7adf05810a192107e74348ec24fea0297cb9c026 (diff)
downloadredmine-4d19007fd18138042bfaf493a3e382c25d333fce.tar.gz
redmine-4d19007fd18138042bfaf493a3e382c25d333fce.zip
Fixes a test failure.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3569 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-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 e34c273b3..a212731ca 100644
--- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
+++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb
@@ -52,7 +52,7 @@ class Redmine::WikiFormatting::TextileFormatterTest < HelperTestCase
MODIFIERS.each do |m2, tag2|
next if m1 == m2
text = "#{m2}#{m1}Phrase modifiers#{m1}#{m2}"
- html = "<p><#{tag2}><#{tag1}>Phrase modifiers</#{tag1}></#{tag2}></p>"
+ html = "<#{tag2}><#{tag1}>Phrase modifiers</#{tag1}></#{tag2}>"
assert_html_output text => html
end
end