diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-09-29 19:16:15 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-09-29 19:16:15 +0000 |
commit | dfbb1b68566a1dbafb7af905d8f9a037ed28c1ff (patch) | |
tree | 9fbfc56276520b9d1ec9d0f9b1525d1cb90931e2 /test/helpers | |
parent | b406fca2ec0f2392f610df84e7fc5f396075c173 (diff) | |
download | redmine-dfbb1b68566a1dbafb7af905d8f9a037ed28c1ff.tar.gz redmine-dfbb1b68566a1dbafb7af905d8f9a037ed28c1ff.zip |
Merges fav and fav-off icons in only one icon and fill the collor from CSS (#23980).
git-svn-id: https://svn.redmine.org/redmine/trunk@23089 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/helpers')
-rw-r--r-- | test/helpers/watchers_helper_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/helpers/watchers_helper_test.rb b/test/helpers/watchers_helper_test.rb index 42016ec01..7d1f39795 100644 --- a/test/helpers/watchers_helper_test.rb +++ b/test/helpers/watchers_helper_test.rb @@ -28,7 +28,7 @@ class WatchersHelperTest < Redmine::HelperTest test '#watcher_link with a non-watched object' do expected = link_to( - icon_with_label("fav-off", "Watch"), + icon_with_label("fav", "Watch"), "/watchers/watch?object_id=1&object_type=issue", :remote => true, :method => 'post', :class => "issue-1-watcher icon icon-fav-off" ) @@ -37,7 +37,7 @@ class WatchersHelperTest < Redmine::HelperTest test '#watcher_link with a single object array' do expected = link_to( - icon_with_label("fav-off", "Watch"), + icon_with_label("fav", "Watch"), "/watchers/watch?object_id=1&object_type=issue", :remote => true, :method => 'post', :class => "issue-1-watcher icon icon-fav-off" ) @@ -46,7 +46,7 @@ class WatchersHelperTest < Redmine::HelperTest test '#watcher_link with a multiple objects array' do expected = link_to( - icon_with_label("fav-off", "Watch"), + icon_with_label("fav", "Watch"), "/watchers/watch?object_id%5B%5D=1&object_id%5B%5D=3&object_type=issue", :remote => true, :method => 'post', :class => "issue-bulk-watcher icon icon-fav-off" ) |