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

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-05-03 19:12:11 +0300
committerJulius Härtl <jus@bitgrid.net>2018-05-04 09:20:56 +0300
commit356f1f0211384b16f84658a29ec75f3cb99573d0 (patch)
tree5f5accec20034c1d0819e6234bba314b382d54fe /tests/Controller
parent976f5c5d95c6261b3a2b849a143438515ca1775e (diff)
Move unit tests to drone
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests/Controller')
-rw-r--r--tests/Controller/WizardControllerTest.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/Controller/WizardControllerTest.php b/tests/Controller/WizardControllerTest.php
index bb060cb6..f9286a31 100644
--- a/tests/Controller/WizardControllerTest.php
+++ b/tests/Controller/WizardControllerTest.php
@@ -24,18 +24,11 @@
namespace OCA\FirstRunWizard\Tests\Controller;
-use OCA\FirstRunWizard\AppInfo\Application;
use OCA\FirstRunWizard\Controller\WizardController;
-use OCA\FirstRunWizard\Notification\BackgroundJob;
-use OCA\FirstRunWizard\Notification\Notifier;
-use OCP\AppFramework\App;
-use OCP\AppFramework\Controller;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\DataResponse;
-use OCP\BackgroundJob\IJob;
use OCP\IConfig;
use OCP\IRequest;
-use OCP\Notification\INotifier;
use Test\TestCase;
/**
@@ -111,7 +104,7 @@ class WizardControllerTest extends TestCase {
->willReturnMap([
['customclient_desktop', 'https://nextcloud.com/install/#install-clients', $desktopUrl],
['customclient_android', 'https://play.google.com/store/apps/details?id=com.nextcloud.client', $androidUrl],
- ['customclient_ios', 'https://itunes.apple.com/us/app/nextcloud/id1125420102?mt=8', $iosUrl],
+ ['customclient_ios', 'https://geo.itunes.apple.com/us/app/nextcloud/id1125420102?mt=8', $iosUrl],
]);
$response = $controller->show();