From 896e5adce25ed021a552df6bda2ef0e2c1fd2a7d Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 22 Jul 2021 00:40:55 +0200 Subject: [PATCH] sources/ldap: fix lint Signed-off-by: Jens Langhammer --- authentik/sources/ldap/tests/test_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/sources/ldap/tests/test_sync.py b/authentik/sources/ldap/tests/test_sync.py index 8672a5317..98496e85f 100644 --- a/authentik/sources/ldap/tests/test_sync.py +++ b/authentik/sources/ldap/tests/test_sync.py @@ -55,7 +55,7 @@ class LDAPSyncTests(TestCase): self.assertFalse(User.objects.filter(username="user1_sn").exists()) events = Event.objects.filter( action=EventAction.CONFIGURATION_ERROR, - context__message="Failed to evaluate property-mapping: name 'q' is not defined" + context__message="Failed to evaluate property-mapping: name 'q' is not defined", ) self.assertTrue(events.exists())