From 875a3f4b28f728b9f7c27798ac08c180e96949ed Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 4 Oct 2016 12:49:55 +0200 Subject: [PATCH] Use new URL schema Signed-off-by: Joas Schilling --- apps/updatenotification/lib/Notification/BackgroundJob.php | 2 +- .../updatenotification/tests/Notification/BackgroundJobTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/updatenotification/lib/Notification/BackgroundJob.php b/apps/updatenotification/lib/Notification/BackgroundJob.php index 29a7671de5..3a1aa5e0f1 100644 --- a/apps/updatenotification/lib/Notification/BackgroundJob.php +++ b/apps/updatenotification/lib/Notification/BackgroundJob.php @@ -98,7 +98,7 @@ class BackgroundJob extends TimedJob { $status = $updater->check(); if (isset($status['version'])) { - $url = $this->urlGenerator->linkToRouteAbsolute('settings_admin') . '#updater'; + $url = $this->urlGenerator->linkToRouteAbsolute('settings.AdminSettings.index') . '#updater'; $this->createNotifications('core', $status['version'], $url, $status['versionstring']); } } diff --git a/apps/updatenotification/tests/Notification/BackgroundJobTest.php b/apps/updatenotification/tests/Notification/BackgroundJobTest.php index 9e84762756..02737d07ab 100644 --- a/apps/updatenotification/tests/Notification/BackgroundJobTest.php +++ b/apps/updatenotification/tests/Notification/BackgroundJobTest.php @@ -168,7 +168,7 @@ class BackgroundJobTest extends TestCase { } else { $this->urlGenerator->expects($this->once()) ->method('linkToRouteAbsolute') - ->with('settings_admin') + ->with('settings.AdminSettings.index') ->willReturn('admin-url'); $job->expects($this->once())