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

Fix system test failure in reactions_test.rb caused by r23809 (#31531).

Patch by Katsuya HIDAKA (user:hidakatsuya).


git-svn-id: https://svn.redmine.org/redmine/trunk@23810 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2025-06-01 02:02:19 +00:00
parent 7645774634
commit d911e0d0fd

View File

@ -129,7 +129,7 @@ class ReactionsSystemTest < ApplicationSystemTestCase
within('#change-1') do
assert_selector 'a.reaction-button'
assert_no_selector 'a.icon-comment'
assert_no_selector 'a.icon-quote'
assert_no_selector 'span.drdn'
end
within("#change-#{journal_without_notes.id}") do
@ -143,14 +143,14 @@ class ReactionsSystemTest < ApplicationSystemTestCase
within('#change-1') do
assert_selector 'a.reaction-button'
assert_selector 'a.icon-comment'
assert_selector 'a.icon-quote'
assert_selector 'span.drdn'
end
within("#change-#{journal_without_notes.id}") do
assert_selector 'a.reaction-button'
assert_selector 'span.drdn'
assert_no_selector 'a.icon-comment'
assert_no_selector 'a.icon-quote'
end
end