summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLain Soykaf <lain@lain.com>2021-01-14 16:01:14 +0100
committerLain Soykaf <lain@lain.com>2021-01-14 16:01:14 +0100
commitc4b74c9c3fcf926de374f512e8b218e6785448e5 (patch)
treedd4f6af04ada4fc3df7041831cd40c1f771511b7
parent39f3683a06aea3d6aed85c611b0db0f6ea21052a (diff)
Linting.
-rw-r--r--test/pleroma/web/auth/pleroma_authenticator_test.exs8
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