summaryrefslogtreecommitdiff
path: root/test/web/auth/pleroma_authenticator_test.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-05-13 07:45:35 +0000
committerlain <lain@soykaf.club>2020-05-13 07:45:35 +0000
commit3210e939bf3b3f3c80a6774ae4d4a531ef5491cd (patch)
treeef51aae2e3cbc43a506af4ad940a5be63fdb5e70 /test/web/auth/pleroma_authenticator_test.exs
parentc74018e6a7a19a40a75c343ddadc199d9990597e (diff)
parentb46811a07444187e7765f439e933f214c0a0aeb3 (diff)
downloadpleroma-3210e939bf3b3f3c80a6774ae4d4a531ef5491cd.tar.gz
pleroma-3210e939bf3b3f3c80a6774ae4d4a531ef5491cd.zip
Merge branch 'upgrade-comeonin' into 'develop'
Upgrade Comeonin to v5 See merge request pleroma/pleroma!2523
Diffstat (limited to 'test/web/auth/pleroma_authenticator_test.exs')
-rw-r--r--test/web/auth/pleroma_authenticator_test.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/web/auth/pleroma_authenticator_test.exs b/test/web/auth/pleroma_authenticator_test.exs
index 7125c5081..5a421e5ed 100644
--- a/test/web/auth/pleroma_authenticator_test.exs
+++ b/test/web/auth/pleroma_authenticator_test.exs
@@ -11,7 +11,7 @@ defmodule Pleroma.Web.Auth.PleromaAuthenticatorTest do
setup do
password = "testpassword"
name = "AgentSmith"
- user = insert(:user, nickname: name, password_hash: Comeonin.Pbkdf2.hashpwsalt(password))
+ user = insert(:user, nickname: name, password_hash: Pbkdf2.hash_pwd_salt(password))
{:ok, [user: user, name: name, password: password]}
end