summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/tests/Settings/AdminTest.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-02-01 14:40:44 +0100
committerGitHub <noreply@github.com>2018-02-01 14:40:44 +0100
commite28c40788f2e8b85f7befab05a5d070a169afdb5 (patch)
tree8d5031980a84a12ec8f3423fec55361c0b069f28 /apps/updatenotification/tests/Settings/AdminTest.php
parentc176a7a78bb4b1e0c534e63b2862f8868e0c8e5a (diff)
parent47390764748574e0c0979a70f45ae7dd3920bb05 (diff)
downloadnextcloud-server-e28c40788f2e8b85f7befab05a5d070a169afdb5.tar.gz
nextcloud-server-e28c40788f2e8b85f7befab05a5d070a169afdb5.zip
Merge pull request #8136 from nextcloud/use-correct-update-server
Use correct update server
Diffstat (limited to 'apps/updatenotification/tests/Settings/AdminTest.php')
-rw-r--r--apps/updatenotification/tests/Settings/AdminTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/updatenotification/tests/Settings/AdminTest.php b/apps/updatenotification/tests/Settings/AdminTest.php
index 12734b808c0..02f505517e1 100644
--- a/apps/updatenotification/tests/Settings/AdminTest.php
+++ b/apps/updatenotification/tests/Settings/AdminTest.php
@@ -81,8 +81,8 @@ class AdminTest extends TestCase {
$this->config
->expects($this->once())
->method('getSystemValue')
- ->with('updater.server.url', 'https://updates.nextcloud.com/server/')
- ->willReturn('https://updates.nextcloud.com/server/');
+ ->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/')
+ ->willReturn('https://updates.nextcloud.com/updater_server/');
$this->dateTimeFormatter
->expects($this->once())
->method('formatDateTime')
@@ -108,7 +108,7 @@ class AdminTest extends TestCase {
'downloadLink' => 'https://downloads.nextcloud.org/server',
'updaterEnabled' => true,
'isDefaultUpdateServerURL' => true,
- 'updateServerURL' => 'https://updates.nextcloud.com/server/',
+ 'updateServerURL' => 'https://updates.nextcloud.com/updater_server/',
'notify_groups' => 'admin',
];