From 95786e89c60099a29019cd4b28473962cf71039c Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Fri, 21 Jun 2024 00:28:10 +0530 Subject: [PATCH] [chores] Fixed test project configuration --- tests/openwisp2/settings.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/openwisp2/settings.py b/tests/openwisp2/settings.py index ac203be5..0b8635db 100644 --- a/tests/openwisp2/settings.py +++ b/tests/openwisp2/settings.py @@ -36,6 +36,7 @@ 'openwisp_controller.pki', 'openwisp_controller.config', 'openwisp_controller.connection', + 'openwisp_controller.geo', 'openwisp_notifications', 'openwisp_ipam', 'reversion', @@ -194,10 +195,6 @@ # Avoid adding unnecessary dependency to speedup tests. if not TESTING or (TESTING and os.environ.get('WIFI_MESH', False)): OPENWISP_NETWORK_TOPOLOGY_WIFI_MESH_INTEGRATION = True - INSTALLED_APPS.insert( - INSTALLED_APPS.index('openwisp_controller.connection'), - 'openwisp_controller.geo', - ) openwisp_ipam_index = INSTALLED_APPS.index('openwisp_ipam') INSTALLED_APPS.insert(openwisp_ipam_index, 'leaflet') INSTALLED_APPS.insert(openwisp_ipam_index, 'nested_admin')