From 4bc31025dce1a93f2ed2f6ed50e5eaf6f439302a Mon Sep 17 00:00:00 2001 From: David Lyle Date: Thu, 18 Jun 2015 15:45:37 -0600 Subject: [PATCH] Removing unnecessary test setting of dashboards HORIZON_CONFIG is still being used to set default values for dashboards and default_dashboard. This method of specifying these is deprecated. All of these default behaviors are now covered in the enabled directory. Removing them to remove seeing the deprecation warning every time tests run. Closes-Bug: #1466671 Change-Id: Ifd833288f0bf2992bd810a93a74a799232f119ab --- openstack_dashboard/test/settings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/openstack_dashboard/test/settings.py b/openstack_dashboard/test/settings.py index ecf06bb7df..16f195b887 100644 --- a/openstack_dashboard/test/settings.py +++ b/openstack_dashboard/test/settings.py @@ -58,8 +58,6 @@ AUTHENTICATION_BACKENDS = ('openstack_auth.backend.KeystoneBackend',) SITE_BRANDING = 'OpenStack' HORIZON_CONFIG = { - 'dashboards': ('project', 'admin', 'identity', 'settings', 'router',), - 'default_dashboard': 'project', "password_validator": { "regex": '^.{8,18}$', "help_text": "Password must be between 8 and 18 characters."