logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: c4b74c9c3fcf926de374f512e8b218e6785448e5
parent 39f3683a06aea3d6aed85c611b0db0f6ea21052a
Author: Lain Soykaf <lain@lain.com>
Date:   Thu, 14 Jan 2021 16:01:14 +0100

Linting.

Diffstat:

Mtest/pleroma/web/auth/pleroma_authenticator_test.exs8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 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