Remove reference to removed endpoints

This commit is contained in:
Chris Hill-Scott
2018-04-27 16:47:00 +01:00
parent 48114f1836
commit 4cc8f39231
2 changed files with 1 additions and 7 deletions

View File

@@ -43,8 +43,6 @@ class HeaderNavigation(Navigation):
'support': { 'support': {
'bat_phone', 'bat_phone',
'feedback', 'feedback',
'old_feedback',
'old_submit_feedback',
'support', 'support',
'thanks', 'thanks',
'triage', 'triage',
@@ -399,11 +397,9 @@ class MainNavigation(Navigation):
'live_services', 'live_services',
'manage_org_users', 'manage_org_users',
'new_password', 'new_password',
'old_feedback',
'old_integration_testing', 'old_integration_testing',
'old_roadmap', 'old_roadmap',
'old_service_dashboard', 'old_service_dashboard',
'old_submit_feedback',
'old_terms', 'old_terms',
'old_using_notify', 'old_using_notify',
'organisation_dashboard', 'organisation_dashboard',
@@ -564,11 +560,9 @@ class OrgNavigation(Navigation):
'manage_users', 'manage_users',
'monthly', 'monthly',
'new_password', 'new_password',
'old_feedback',
'old_integration_testing', 'old_integration_testing',
'old_roadmap', 'old_roadmap',
'old_service_dashboard', 'old_service_dashboard',
'old_submit_feedback',
'old_terms', 'old_terms',
'old_using_notify', 'old_using_notify',
'organisations', 'organisations',

View File

@@ -1,7 +1,7 @@
import pytest import pytest
from tests.conftest import ORGANISATION_ID, SERVICE_ONE_ID, app_
from app.navigation import HeaderNavigation, MainNavigation, OrgNavigation from app.navigation import HeaderNavigation, MainNavigation, OrgNavigation
from tests.conftest import ORGANISATION_ID, SERVICE_ONE_ID, app_
all_endpoints = [ all_endpoints = [
rule.endpoint for rule in next(app_(None)).url_map.iter_rules() rule.endpoint for rule in next(app_(None)).url_map.iter_rules()