diff options
author | Lain Soykaf <lain@lain.com> | 2021-01-14 16:01:14 +0100 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2021-01-14 16:01:14 +0100 |
commit | c4b74c9c3fcf926de374f512e8b218e6785448e5 (patch) | |
tree | dd4f6af04ada4fc3df7041831cd40c1f771511b7 | |
parent | 39f3683a06aea3d6aed85c611b0db0f6ea21052a (diff) | |
download | pleroma-c4b74c9c3fcf926de374f512e8b218e6785448e5.tar.gz |
Linting.
-rw-r--r-- | test/pleroma/web/auth/pleroma_authenticator_test.exs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/pleroma/web/auth/pleroma_authenticator_test.exs b/test/pleroma/web/auth/pleroma_authenticator_test.exs index edaf9eecb..b1397c523 100644 --- 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 |