diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-30 15:48:21 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-30 15:48:21 +0000 |
commit | bd143ce0fd273f1cb8eb679883f7120146ccd614 (patch) | |
tree | 054b298264023519de42703f244ab47c0249357e /test | |
parent | a6752f0f81d46a83d2ff629eac8d92b1a992501b (diff) | |
download | redmine-bd143ce0fd273f1cb8eb679883f7120146ccd614.tar.gz redmine-bd143ce0fd273f1cb8eb679883f7120146ccd614.zip |
fix source indent of test/integration/sessions_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20520 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/sessions_test.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/integration/sessions_test.rb b/test/integration/sessions_test.rb index 2229986d6..1ae4310af 100644 --- a/test/integration/sessions_test.rb +++ b/test/integration/sessions_test.rb @@ -71,11 +71,14 @@ class SessionsTest < Redmine::IntegrationTest get '/my/password' assert_response 200 - post '/my/password', :params => { + post( + '/my/password', + :params => { :password => 'jsmith', :new_password => 'secret123', :new_password_confirmation => 'secret123' } + ) assert_response 302 assert_not_equal token, session[:tk] |