diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2023-10-29 12:50:59 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2023-10-29 12:50:59 +0000 |
commit | f6c9c725bdbdf1474019093f01034eabf2eb7df8 (patch) | |
tree | 6823a8bb765c97552b82604ee58574f57cc7b272 | |
parent | cf3ae915eb8beba652055d534b7fe221cd0eb31b (diff) | |
download | redmine-f6c9c725bdbdf1474019093f01034eabf2eb7df8.tar.gz redmine-f6c9c725bdbdf1474019093f01034eabf2eb7df8.zip |
Fixes failing system test caused by unavailable Underline button in CommonMark (#34863).
git-svn-id: https://svn.redmine.org/redmine/trunk@22399 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/system/keyboard_shortcuts_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/system/keyboard_shortcuts_test.rb b/test/system/keyboard_shortcuts_test.rb index 23fbb49e6..5a5040685 100644 --- a/test/system/keyboard_shortcuts_test.rb +++ b/test/system/keyboard_shortcuts_test.rb @@ -116,7 +116,8 @@ class InlineAutocompleteSystemTest < ApplicationSystemTestCase within('.jstBlock .jstElements') do assert_equal "Strong (#{modifier_key_title}B)", find('button.jstb_strong')['title'] assert_equal "Italic (#{modifier_key_title}I)", find('button.jstb_em')['title'] - assert_equal "Underline (#{modifier_key_title}U)", find('button.jstb_ins')['title'] + # assert button without shortcut + assert_equal "Deleted", find('button.jstb_del')['title'] end end |