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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Controller/ProxyControllerTest.php')
-rw-r--r--tests/Unit/Controller/ProxyControllerTest.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/Unit/Controller/ProxyControllerTest.php b/tests/Unit/Controller/ProxyControllerTest.php
index f7d6ebe54..f3bda3d94 100644
--- a/tests/Unit/Controller/ProxyControllerTest.php
+++ b/tests/Unit/Controller/ProxyControllerTest.php
@@ -58,7 +58,7 @@ class ProxyControllerTest extends TestCase {
/** @var ProxyController */
private $controller;
- protected function setUp() {
+ protected function setUp(): void {
parent::setUp();
$this->appName = 'mail';
@@ -142,9 +142,6 @@ class ProxyControllerTest extends TestCase {
$this->assertEquals($expected, $response);
}
- /**
- * @expectedException Exception
- */
public function testRedirectInvalidUrl() {
$this->controller = new ProxyController(
$this->appName,
@@ -154,6 +151,8 @@ class ProxyControllerTest extends TestCase {
$this->clientService,
''
);
+ $this->expectException(Exception::class);
+
$this->controller->redirect('ftps://example.com');
}