1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-02-01 03:57:15 +00:00

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
This commit is contained in:
Marius Balteanu 2023-10-29 12:50:59 +00:00
parent cf3ae915eb
commit f6c9c725bd

View File

@ -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