diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-02 21:26:33 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-02-02 21:26:33 +0100 |
commit | 0bde91600ad28dcfd30e7d5771f2673c165fc3fa (patch) | |
tree | bf06d6e9ce99ca310cd34f35486dc2ff86b75df8 /apps/theming | |
parent | 737e7f9f29ed908e160a5aa64db155cbcabd2e25 (diff) | |
download | nextcloud-server-0bde91600ad28dcfd30e7d5771f2673c165fc3fa.tar.gz nextcloud-server-0bde91600ad28dcfd30e7d5771f2673c165fc3fa.zip |
Fix theming test
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/theming')
-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() { |