diff options
author | Go MAEDA <maeda@farend.jp> | 2024-11-10 06:40:07 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-11-10 06:40:07 +0000 |
commit | 162c356b23e236724c7a46e0e4d1778903d45ee5 (patch) | |
tree | ff62fafda98ebb8e5de09d435be9748ac3aad9ec /test/functional | |
parent | 8438deb8a68fdfaf260b8c8d68d5aad2afa70fa6 (diff) | |
download | redmine-162c356b23e236724c7a46e0e4d1778903d45ee5.tar.gz redmine-162c356b23e236724c7a46e0e4d1778903d45ee5.zip |
Switched checked icon in context menu to SVG icon (#23980, #41720).
Patch by Katsuya HIDAKA (user:hidakatsuya).
git-svn-id: https://svn.redmine.org/redmine/trunk@23224 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/context_menus_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/context_menus_controller_test.rb b/test/functional/context_menus_controller_test.rb index c8d4f798d..e10d2309c 100644 --- a/test/functional/context_menus_controller_test.rb +++ b/test/functional/context_menus_controller_test.rb @@ -221,7 +221,7 @@ class ContextMenusControllerTest < Redmine::ControllerTest assert_select 'a[href="#"]', :text => 'List' assert_select 'ul' do assert_select 'a', 3 - assert_select 'a.icon.icon-checked', :text => 'Bar' + assert_select 'a.icon', :text => 'Bar' end end end |