test: fix defective ldap setup/teardown
authorWilliam Pitcock <nenolod@dereferenced.org>
Sat, 16 Mar 2019 04:05:19 +0000 (04:05 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Sat, 16 Mar 2019 04:05:19 +0000 (04:05 +0000)
test/web/oauth/ldap_authorization_test.exs

index 570e41f3e440bb10ec896c42d70882229568d3cf..5bf7eb93c60597dd8d034c54688470e535d11ded 100644 (file)
@@ -11,15 +11,17 @@ defmodule Pleroma.Web.OAuth.LDAPAuthorizationTest do
   import Mock
 
   setup_all do
-    ldap_authenticator = Pleroma.Config.get([Pleroma.Web.Auth.Authenticator])
+    ldap_authenticator =
+      Pleroma.Config.get(Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.PleromaAuthenticator)
+
     ldap_enabled = Pleroma.Config.get([:ldap, :enabled])
 
     on_exit(fn ->
-      Pleroma.Config.put([Pleroma.Web.Auth.Authenticator], ldap_authenticator)
+      Pleroma.Config.put(Pleroma.Web.Auth.Authenticator, ldap_authenticator)
       Pleroma.Config.put([:ldap, :enabled], ldap_enabled)
     end)
 
-    Pleroma.Config.put([Pleroma.Web.Auth.Authenticator], Pleroma.Web.Auth.LDAPAuthenticator)
+    Pleroma.Config.put(Pleroma.Web.Auth.Authenticator, Pleroma.Web.Auth.LDAPAuthenticator)
     Pleroma.Config.put([:ldap, :enabled], true)
 
     :ok