1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-02 21:59:39 +00:00

assert explicitly to hide 'follow' button at IssuesControllerTest#test_get_bulk_edit

git-svn-id: http://svn.redmine.org/redmine/trunk@20028 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-12 12:58:37 +00:00
parent 5401a65a81
commit da22acd8b7

View File

@ -6423,7 +6423,8 @@ class IssuesControllerTest < Redmine::ControllerTest
# Initial form should hide 'follow' button
assert_select 'input[type=submit]', 1 do
assert_select '[name=?]', 'commit'
assert_select '[name=?]', 'commit', 1
assert_select '[name=?]', 'follow', 0
end
end
end