From ce595ded5ffc7ded86c27964d64d6c57a8a7110a Mon Sep 17 00:00:00 2001 From: Anton Shepilov Date: Tue, 23 Jan 2024 12:53:27 +0300 Subject: [PATCH] publish (#343) --- .../utils/nextcloud-migration/test/lemon.ldap.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdrive/backend/utils/nextcloud-migration/test/lemon.ldap.test.ts b/tdrive/backend/utils/nextcloud-migration/test/lemon.ldap.test.ts index 5dc7bb09..eb1e4a64 100644 --- a/tdrive/backend/utils/nextcloud-migration/test/lemon.ldap.test.ts +++ b/tdrive/backend/utils/nextcloud-migration/test/lemon.ldap.test.ts @@ -7,7 +7,7 @@ describe.skip('Lemon LDAP User Provider', () => { test('ldap returns user info', async () => { const ldap = new LemonLdapUserProvider({ url: "https://auth.avocat.fr/_getldapentries", - auth: "isPnOTuBwjqAlIdCFGNY", + auth: "", }); const user = await ldap.find("999248"); expect(user.firstName).toBe("Xavier"); @@ -19,7 +19,7 @@ describe.skip('Lemon LDAP User Provider', () => { test('ldap returns user info with email', async () => { const ldap = new LemonLdapUserProvider({ url: "https://auth.avocat.fr/_getldapentries", - auth: "isPnOTuBwjqAlIdCFGNY", + auth: "", }); const user = await ldap.find("999253"); expect(user.firstName).toBe("Utilisateur4"); @@ -31,7 +31,7 @@ describe.skip('Lemon LDAP User Provider', () => { test('ldap returns nothing', async () => { const ldap = new LemonLdapUserProvider({ url: "https://auth.avocat.fr/_getldapentries", - auth: "isPnOTuBwjqAlIdCFGNY", + auth: "", }); const user = await ldap.find("NOTHING_HERE"); expect(user.email).toBeUndefined();