diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-08 14:54:00 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-08 14:54:00 +0000 |
commit | b5dbe41e781869cff5aac0a3474e0a04d48b2386 (patch) | |
tree | 21099978d47c12fdcffb318dcd78d6629941dd9a /test/functional/issues_controller_test.rb | |
parent | 5da1580755dbd32e80b5076e1ab0a4268e3805f3 (diff) | |
download | redmine-b5dbe41e781869cff5aac0a3474e0a04d48b2386.tar.gz redmine-b5dbe41e781869cff5aac0a3474e0a04d48b2386.zip |
code layout clean up test/functional/issues_controller_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18966 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/issues_controller_test.rb')
-rw-r--r-- | test/functional/issues_controller_test.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 6e597ffc9..352f5cedf 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -3353,7 +3353,9 @@ class IssuesControllerTest < Redmine::ControllerTest end issue = Issue.order('id DESC').first - assert_redirected_to :controller => 'issues', :action => 'new', :project_id => 'ecookbook', :issue => {:tracker_id => 3} + assert_redirected_to :controller => 'issues', + :action => 'new', :project_id => 'ecookbook', + :issue => {:tracker_id => 3} assert_not_nil flash[:notice], "flash was not set" assert_select_in flash[:notice], 'a[href=?][title=?]', "/issues/#{issue.id}", |