From 653b6b3601f845c119921dbba8aad1ae0eaf2f74 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 8 Jul 2020 15:12:29 +0100 Subject: [PATCH] Fix test broken by merging The test came from one branch, the correct value came from another. --- tests/app/test_navigation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index 92507b07b..efd28c752 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -188,7 +188,7 @@ def test_navigation_for_services_with_broadcast_permission( assert [ a['href'] for a in page.select('.navigation a') ] == [ - '/services/{}'.format(SERVICE_ONE_ID), + '/services/{}/broadcast-dashboard'.format(SERVICE_ONE_ID), '/services/{}/templates'.format(SERVICE_ONE_ID), '/services/{}/users'.format(SERVICE_ONE_ID), '/services/{}/service-settings'.format(SERVICE_ONE_ID),