mirror of
https://github.com/redmine/redmine.git
synced 2025-11-15 09:46:02 +01:00
Fix passing a wrong parameter to with_settings in UserTest::test_random_password_include_required_characters (#37449).
Patch by Go MAEDA. git-svn-id: https://svn.redmine.org/redmine/trunk@21705 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1099,7 +1099,7 @@ class UserTest < ActiveSupport::TestCase
|
||||
end
|
||||
|
||||
def test_random_password_include_required_characters
|
||||
with_settings :password_required_char_classes => Setting::PASSWORD_CHAR_CLASSES do
|
||||
with_settings :password_required_char_classes => Setting::PASSWORD_CHAR_CLASSES.keys do
|
||||
u = User.new(:firstname => "new", :lastname => "user", :login => "random", :mail => "random@somnet.foo")
|
||||
u.random_password
|
||||
assert u.valid?
|
||||
|
||||
Reference in New Issue
Block a user