diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/web/oauth/ldap_authorization_test.exs | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/test/web/oauth/ldap_authorization_test.exs b/test/web/oauth/ldap_authorization_test.exs index 570e41f3e..5bf7eb93c 100644 --- a/test/web/oauth/ldap_authorization_test.exs +++ b/test/web/oauth/ldap_authorization_test.exs @@ -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 | 
