projects
/
akkoma
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39f3683
)
Linting.
author
Lain Soykaf
<lain@lain.com>
Thu, 14 Jan 2021 15:01:14 +0000
(16:01 +0100)
committer
Lain Soykaf
<lain@lain.com>
Thu, 14 Jan 2021 15:01:14 +0000
(16:01 +0100)
test/pleroma/web/auth/pleroma_authenticator_test.exs
patch
|
blob
|
history
diff --git
a/test/pleroma/web/auth/pleroma_authenticator_test.exs
b/test/pleroma/web/auth/pleroma_authenticator_test.exs
index edaf9eecbe60619157a81dd349bfad526ca62a6e..b1397c523096e1d45aba99c7b4f8caeabbe397d3 100644
(file)
--- a/
test/pleroma/web/auth/pleroma_authenticator_test.exs
+++ b/
test/pleroma/web/auth/pleroma_authenticator_test.exs
@@
-11,7
+11,13
@@
defmodule Pleroma.Web.Auth.PleromaAuthenticatorTest do
setup do
password = "testpassword"
name = "AgentSmith"
- user = insert(:user, nickname: name, password_hash: Pleroma.Password.Pbkdf2.hash_pwd_salt(password))
+
+ user =
+ insert(:user,
+ nickname: name,
+ password_hash: Pleroma.Password.Pbkdf2.hash_pwd_salt(password)
+ )
+
{:ok, [user: user, name: name, password: password]}
end