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
This commit is contained in:
David Lyle 2015-06-18 15:45:37 -06:00
parent cd4900f84c
commit 4bc31025dc

View File

@ -58,8 +58,6 @@ AUTHENTICATION_BACKENDS = ('openstack_auth.backend.KeystoneBackend',)
SITE_BRANDING = 'OpenStack' SITE_BRANDING = 'OpenStack'
HORIZON_CONFIG = { HORIZON_CONFIG = {
'dashboards': ('project', 'admin', 'identity', 'settings', 'router',),
'default_dashboard': 'project',
"password_validator": { "password_validator": {
"regex": '^.{8,18}$', "regex": '^.{8,18}$',
"help_text": "Password must be between 8 and 18 characters." "help_text": "Password must be between 8 and 18 characters."