diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-03-21 23:40:21 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-03-21 23:40:21 +0000 |
commit | 919d4589b9e1f937a2d6adbe4cebfcd7366c1b88 (patch) | |
tree | fa46d7d79901b9fb2e121a54647f6f25216d0bce /test/unit | |
parent | 1e5fa50a8096bdebd0413d24f10d18d291d56dde (diff) | |
download | redmine-919d4589b9e1f937a2d6adbe4cebfcd7366c1b88.tar.gz redmine-919d4589b9e1f937a2d6adbe4cebfcd7366c1b88.zip |
fix unit search test failure (#13405)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11674 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/helpers/application_helper_test.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/unit/helpers/application_helper_test.rb b/test/unit/helpers/application_helper_test.rb index 2294b5e87..a344669b4 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -265,12 +265,13 @@ RAW :class => Issue.find(3).css_classes, :title => 'Error 281 when updating a recipe (New)') revision_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1}, - :class => 'changeset', :title => 'do not escaping #<>&') + :class => 'changeset', :title => 'My very first commit do not escaping #<>&') revision_link2 = link_to('r2', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 2}, :class => 'changeset', :title => 'This commit fixes #1, #2 and references #1 & #3') - changeset_link2 = link_to('691322a8eb01e11fd7', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1}, - :class => 'changeset', :title => 'do not escaping #<>&') + changeset_link2 = link_to('691322a8eb01e11fd7', + {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1}, + :class => 'changeset', :title => 'My very first commit do not escaping #<>&') document_link = link_to('Test document', {:controller => 'documents', :action => 'show', :id => 1}, :class => 'document') |