diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-02-03 14:11:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-03 14:11:03 +0100 |
commit | 79e81c15c5beb4174922921083f0e838de9a3bfc (patch) | |
tree | bc9b16e4f75895c1bde82e4025bd83a7cfab68f6 /apps | |
parent | 7af48b4187a6dc806fc033000e1110d3c2baf7a9 (diff) | |
parent | 0bde91600ad28dcfd30e7d5771f2673c165fc3fa (diff) | |
download | nextcloud-server-79e81c15c5beb4174922921083f0e838de9a3bfc.tar.gz nextcloud-server-79e81c15c5beb4174922921083f0e838de9a3bfc.zip |
Merge pull request #8163 from nextcloud/fix_themeing_test
Fix theming test
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/tests/ThemingDefaultsTest.php | 12 |
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() { |