diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-08 12:18:01 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-08 12:18:01 +0000 |
commit | 9716194b2977b0748d896512b694e9e7dd0c7331 (patch) | |
tree | 4eba3464bce60082b4378b85b4be9ccaa8e9e6c7 | |
parent | 331d3273252527795746418fdb8485cc0d896207 (diff) | |
download | redmine-9716194b2977b0748d896512b694e9e7dd0c7331.tar.gz redmine-9716194b2977b0748d896512b694e9e7dd0c7331.zip |
add additional assert to Issue system "test_update_issue_with_form_update"
git-svn-id: http://svn.redmine.org/redmine/trunk@18624 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/system/issues_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 6c81a7792..d98b9c759 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -213,7 +213,7 @@ class IssuesTest < ApplicationSystemTestCase assert_no_difference 'Issue.count' do page.first(:button, 'Submit').click end - + assert page.has_css?('#flash_notice') issue = Issue.find(1) assert_equal 'CF value', issue.custom_field_value(field) end |