diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-09-26 15:02:57 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-09-26 15:02:57 +0000 |
commit | bcd747da37be5876983bdcbda2072daa26215121 (patch) | |
tree | eef90525015206cfce40a23b53bc8202f64d90c2 /test/functional | |
parent | fb251df344f0bf246419a45c5267c8e487ccde98 (diff) | |
download | redmine-bcd747da37be5876983bdcbda2072daa26215121.tar.gz redmine-bcd747da37be5876983bdcbda2072daa26215121.zip |
add issue id to assert_select of CalendarsControllerTest#test_show
git-svn-id: http://svn.redmine.org/redmine/trunk@20090 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/calendars_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index 538c3ad1f..100e8c221 100644 --- a/test/functional/calendars_controller_test.rb +++ b/test/functional/calendars_controller_test.rb @@ -64,7 +64,7 @@ class CalendarsControllerTest < Redmine::ControllerTest # Assert context menu on issues assert_select 'form[data-cm-url=?]', '/issues/context_menu' assert_select 'div.issue.hascontextmenu.tooltip' do - assert_select 'input[name=?][type=?]', 'ids[]', 'checkbox' + assert_select 'input[name=?][type=?][value=?]', 'ids[]', 'checkbox', '2' assert_select 'img[class="gravatar"]' end end |