diff options
Diffstat (limited to 't/cobrand')
-rw-r--r-- | t/cobrand/bathnes.t | 2 | ||||
-rw-r--r-- | t/cobrand/bromley.t | 2 | ||||
-rw-r--r-- | t/cobrand/zurich.t | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/t/cobrand/bathnes.t b/t/cobrand/bathnes.t index 59e0d5246..4db2f058c 100644 --- a/t/cobrand/bathnes.t +++ b/t/cobrand/bathnes.t @@ -105,7 +105,7 @@ subtest "Custom CSV fields permission can be granted" => sub { is $counciluser->user_body_permissions->count, 0, 'counciluser has no permissions'; - $mech->get_ok("/admin/user_edit/" . $counciluser->id); + $mech->get_ok("/admin/users/" . $counciluser->id); $mech->content_contains('Extra columns in CSV export'); $mech->submit_form_ok( { with_fields => { diff --git a/t/cobrand/bromley.t b/t/cobrand/bromley.t index 05581bdfe..129531fcb 100644 --- a/t/cobrand/bromley.t +++ b/t/cobrand/bromley.t @@ -220,7 +220,7 @@ subtest 'check special subcategories in admin' => sub { ALLOWED_COBRANDS => 'bromley', MAPIT_URL => 'http://mapit.uk/', }, sub { - $mech->get_ok('/admin/user_edit/' . $user->id); + $mech->get_ok('/admin/users/' . $user->id); $mech->submit_form_ok({ with_fields => { 'contacts['.$contact->id.']' => 1, 'contacts[BLUE]' => 1 } }); }; $user->discard_changes; diff --git a/t/cobrand/zurich.t b/t/cobrand/zurich.t index 1faa0adf2..ee2724a07 100644 --- a/t/cobrand/zurich.t +++ b/t/cobrand/zurich.t @@ -1092,7 +1092,7 @@ FixMyStreet::override_config { }, sub { subtest 'users at the top level can be edited' => sub { $mech->log_in_ok( $superuser->email ); - $mech->get_ok('/admin/user_edit/' . $superuser->id ); + $mech->get_ok('/admin/users/' . $superuser->id ); }; }; |