diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-14 18:45:36 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-14 18:45:36 +0000 |
commit | 49176f88cb9c397bc853b1488a77a6fe97f586a4 (patch) | |
tree | c4ca1f3fb365fad952e0e6f084d5f9d226e3a190 /test/unit | |
parent | 130424fc3ed627142f487b495cfa70701e313939 (diff) | |
download | redmine-49176f88cb9c397bc853b1488a77a6fe97f586a4.tar.gz redmine-49176f88cb9c397bc853b1488a77a6fe97f586a4.zip |
Add missing + signs (#22493).
Patch by Gregor Schmidt.
git-svn-id: http://svn.redmine.org/redmine/trunk@15333 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/helpers/application_helper_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 01d91a52b..d2b195568 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -1166,10 +1166,10 @@ RAW '<li><a href="#Title">Title</a>' + '<ul>' + '<li><a href="#Subtitle">Subtitle</a></li>' + - '<li><a href="#Subtitle-2">Subtitle</a></li>' - '</ul>' + '<li><a href="#Subtitle-2">Subtitle</a></li>' + + '</ul>' + '</li>' + - '</ul>' + '</ul>' @project = Project.find(1) result = textilizable(raw).gsub("\n", "") |