From bd143ce0fd273f1cb8eb679883f7120146ccd614 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Mon, 30 Nov 2020 15:48:21 +0000 Subject: [PATCH] fix source indent of test/integration/sessions_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@20520 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/sessions_test.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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]