Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-02-03 16:11:03 +0300
committerGitHub <noreply@github.com>2018-02-03 16:11:03 +0300
commit79e81c15c5beb4174922921083f0e838de9a3bfc (patch)
treebc9b16e4f75895c1bde82e4025bd83a7cfab68f6 /apps
parent7af48b4187a6dc806fc033000e1110d3c2baf7a9 (diff)
parent0bde91600ad28dcfd30e7d5771f2673c165fc3fa (diff)
Merge pull request #8163 from nextcloud/fix_themeing_test
Fix theming test
Diffstat (limited to 'apps')
-rw-r--r--apps/theming/tests/ThemingDefaultsTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php
index 1a4679a2993..36fe9d17b7c 100644
--- a/apps/theming/tests/ThemingDefaultsTest.php
+++ b/apps/theming/tests/ThemingDefaultsTest.php
@@ -556,20 +556,20 @@ class ThemingDefaultsTest extends TestCase {
$this->config
->expects($this->once())
->method('getAppValue')
- ->with('theming', 'iOSClientUrl', 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8')
- ->willReturn('https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8');
+ ->with('theming', 'iOSClientUrl', 'https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8')
+ ->willReturn('https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8');
- $this->assertEquals('https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8', $this->template->getiOSClientUrl());
+ $this->assertEquals('https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8', $this->template->getiOSClientUrl());
}
public function testGetCustomiOSURL() {
$this->config
->expects($this->once())
->method('getAppValue')
- ->with('theming', 'iOSClientUrl', 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8')
- ->willReturn('https://itunes.apple.com/us/app/nextcloud/id1234567890?mt=8');
+ ->with('theming', 'iOSClientUrl', 'https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8')
+ ->willReturn('https://geo.itunes.apple.com/us/app/nextcloud/id1234567890?mt=8');
- $this->assertEquals('https://itunes.apple.com/us/app/nextcloud/id1234567890?mt=8', $this->template->getiOSClientUrl());
+ $this->assertEquals('https://geo.itunes.apple.com/us/app/nextcloud/id1234567890?mt=8', $this->template->getiOSClientUrl());
}
public function testGetDefaultiTunesAppId() {