diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-26 02:46:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-26 02:46:38 +0000 |
commit | 166cbfdb3c68930287ad0e962e2111ba7f57c66e (patch) | |
tree | d50d638fac7fd93feca9525c44b10d72b2ad429b /test/unit | |
parent | 113f8b5cf278ff32bd55bf63aafe11c3f5a085f1 (diff) | |
download | redmine-166cbfdb3c68930287ad0e962e2111ba7f57c66e.tar.gz redmine-166cbfdb3c68930287ad0e962e2111ba7f57c66e.zip |
Adjusts tests for the css class added in r10720 (#12216).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10721 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 4bf191f01..6d5021ed5 100644 --- a/test/unit/helpers/application_helper_test.rb +++ b/test/unit/helpers/application_helper_test.rb @@ -230,9 +230,9 @@ RAW def test_redmine_links issue_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3}, - :class => 'issue status-1 priority-4 overdue', :title => 'Error 281 when updating a recipe (New)') + :class => 'issue status-1 priority-4 priority-lowest overdue', :title => 'Error 281 when updating a recipe (New)') note_link = link_to('#3', {:controller => 'issues', :action => 'show', :id => 3, :anchor => 'note-14'}, - :class => 'issue status-1 priority-4 overdue', :title => 'Error 281 when updating a recipe (New)') + :class => 'issue status-1 priority-4 priority-lowest overdue', :title => 'Error 281 when updating a recipe (New)') changeset_link = link_to('r1', {:controller => 'repositories', :action => 'revision', :id => 'ecookbook', :rev => 1}, :class => 'changeset', :title => 'My very first commit') @@ -701,7 +701,7 @@ RAW expected = <<-EXPECTED <p><a href="/projects/ecookbook/wiki/CookBook_documentation" class="wiki-page">CookBook documentation</a></p> -<p><a href="/issues/1" class="issue status-1 priority-4" title="Can't print recipes (New)">#1</a></p> +<p><a href="/issues/1" class="issue status-1 priority-4 priority-lowest" title="Can't print recipes (New)">#1</a></p> <pre> [[CookBook documentation]] |