diff options
author | Go MAEDA <maeda@farend.jp> | 2019-06-06 14:53:23 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-06-06 14:53:23 +0000 |
commit | adebf4da1dba677f137b65be56d981ca1e2cef3d (patch) | |
tree | 63ced2a2d9a15f055b61620b9fa76fcc7a377510 /test/functional/account_controller_test.rb | |
parent | 7ba7a19cf6047d5428069d6b4a57a5f8859f6826 (diff) | |
download | redmine-adebf4da1dba677f137b65be56d981ca1e2cef3d.tar.gz redmine-adebf4da1dba677f137b65be56d981ca1e2cef3d.zip |
Remove trailing whitespaces from test (#31506).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18233 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/account_controller_test.rb')
-rw-r--r-- | test/functional/account_controller_test.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/account_controller_test.rb b/test/functional/account_controller_test.rb index 1f5a5f1cf..0ad5611b8 100644 --- a/test/functional/account_controller_test.rb +++ b/test/functional/account_controller_test.rb @@ -312,7 +312,7 @@ class AccountControllerTest < Redmine::ControllerTest :firstname => 'John', :lastname => 'Doe', :mail => 'register@example.com' - + } } assert_redirected_to '/my/account' @@ -326,7 +326,7 @@ class AccountControllerTest < Redmine::ControllerTest assert user.active? end end - + def test_post_register_with_registration_off_should_redirect with_settings :self_registration => '0' do assert_no_difference 'User.count' do @@ -338,7 +338,7 @@ class AccountControllerTest < Redmine::ControllerTest :firstname => 'John', :lastname => 'Doe', :mail => 'register@example.com' - + } } assert_redirected_to '/' @@ -357,11 +357,11 @@ class AccountControllerTest < Redmine::ControllerTest :firstname => 'John', :lastname => 'Doe', :mail => 'register@example.com' - - }, + + }, :pref => { :hide_mail => '1' - + } } end |