X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2fcee9625dcd192d0c524f27d9cb182c883e31b4..fa55f3878abe64a2402e2776e60953ed6af8f16e:/test/factories/user.rb diff --git a/test/factories/user.rb b/test/factories/user.rb index 166461637..5b92345c2 100644 --- a/test/factories/user.rb +++ b/test/factories/user.rb @@ -2,7 +2,7 @@ FactoryBot.define do factory :user do sequence(:email) { |n| "user#{n}@example.com" } sequence(:display_name) { |n| "User #{n}" } - pass_crypt { Digest::MD5.hexdigest("test") } + pass_crypt { PasswordHash.create("test").first } # These attributes are not the defaults, but in most tests we want # a 'normal' user who can log in without being redirected etc.