From 044da61a6fffcb014d1f11f4a89a30360b6e829d Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Thu, 29 Feb 2024 15:02:29 -0500 Subject: [PATCH] fails when ran with vscode debugger Tried to dig as to why we ever needed this and could not find the answer. We removed it and ran all the tests and the tests passed so assuming it's no longer needed. --- awx/main/tests/settings_for_test.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/awx/main/tests/settings_for_test.py b/awx/main/tests/settings_for_test.py index 373489de37e8..5634494c3373 100644 --- a/awx/main/tests/settings_for_test.py +++ b/awx/main/tests/settings_for_test.py @@ -1,11 +1,6 @@ # Python -from unittest import mock import uuid -# patch python-ldap -with mock.patch('__main__.__builtins__.dir', return_value=[]): - import ldap # NOQA - # Load development settings for base variables. from awx.settings.development import * # NOQA