summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-11-30 15:48:21 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-11-30 15:48:21 +0000
commitbd143ce0fd273f1cb8eb679883f7120146ccd614 (patch)
tree054b298264023519de42703f244ab47c0249357e /test
parenta6752f0f81d46a83d2ff629eac8d92b1a992501b (diff)
downloadredmine-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.rb5
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]