diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-10-11 12:58:03 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-10-11 12:58:03 +0000 |
commit | 3be81b344e163f6a1a9d7540bf160c538c31e3f3 (patch) | |
tree | 970943d9241eb6a3cf504ec35dbae03ac2c031f0 /test/system | |
parent | 584fc1651a2b8a83e6aee924bca960583ef1f284 (diff) | |
download | redmine-3be81b344e163f6a1a9d7540bf160c538c31e3f3.tar.gz redmine-3be81b344e163f6a1a9d7540bf160c538c31e3f3.zip |
add more assert_equal to IssuesSystemTest#test_bulk_copy
git-svn-id: http://svn.redmine.org/redmine/trunk@20145 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/issues_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index e78a610c0..046088751 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -441,6 +441,8 @@ class IssuesSystemTest < ApplicationSystemTestCase click_link 'Copy' end assert_current_path '/issues/bulk_edit', :ignore_query => true + submit_buttons = page.all('input[type=submit]') + assert_equal 'Copy', submit_buttons[0].value page.find('#issue_project_id').select('OnlineStore') # wait for ajax response |