diff --git a/openstack_dashboard/dashboards/admin/info/tests.py b/openstack_dashboard/dashboards/admin/info/tests.py index 9bb88fdf30..ae974d2c6b 100644 --- a/openstack_dashboard/dashboards/admin/info/tests.py +++ b/openstack_dashboard/dashboards/admin/info/tests.py @@ -47,7 +47,8 @@ class ServicesViewTests(test.BaseAdminViewTests): '', '', '', - '']) + '', + '']) quotas_tab = res.context['tab_group'].get_tab('quotas') self.assertQuerysetEqual(quotas_tab._tables['quotas'].data, diff --git a/openstack_dashboard/test/test_data/keystone_data.py b/openstack_dashboard/test/test_data/keystone_data.py index 9832c7da51..ad343bc020 100644 --- a/openstack_dashboard/test/test_data/keystone_data.py +++ b/openstack_dashboard/test/test_data/keystone_data.py @@ -82,7 +82,15 @@ SERVICE_CATALOG = [ {"region": "RegionOne", "adminURL": "http://admin.nova.example.com:8773/services/Admin", "publicURL": "http://public.nova.example.com:8773/services/Cloud", - "internalURL": "http://int.nova.example.com:8773/services/Cloud"}]} + "internalURL": "http://int.nova.example.com:8773/services/Cloud"}]}, + {"type": "orchestration", + "name": "Heat", + "endpoints_links": [], + "endpoints": [ + {"region": "RegionOne", + "adminURL": "http://admin.heat.example.com:8004/v1", + "publicURL": "http://public.heat.example.com:8004/v1", + "internalURL": "http://int.heat.example.com:8004/v1"}]} ]