Use new URL schema

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2016-10-04 12:49:55 +02:00
parent 87cc0231a8
commit 875a3f4b28
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ class BackgroundJob extends TimedJob {
$status = $updater->check(); $status = $updater->check();
if (isset($status['version'])) { 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']); $this->createNotifications('core', $status['version'], $url, $status['versionstring']);
} }
} }

View File

@ -168,7 +168,7 @@ class BackgroundJobTest extends TestCase {
} else { } else {
$this->urlGenerator->expects($this->once()) $this->urlGenerator->expects($this->once())
->method('linkToRouteAbsolute') ->method('linkToRouteAbsolute')
->with('settings_admin') ->with('settings.AdminSettings.index')
->willReturn('admin-url'); ->willReturn('admin-url');
$job->expects($this->once()) $job->expects($this->once())