aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Core/Controller/LoginControllerTest.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/Core/Controller/LoginControllerTest.php b/tests/Core/Controller/LoginControllerTest.php
index 88bff12e233..c17f307d4c7 100644
--- a/tests/Core/Controller/LoginControllerTest.php
+++ b/tests/Core/Controller/LoginControllerTest.php
@@ -148,7 +148,7 @@ class LoginControllerTest extends TestCase {
$this->request
->expects($this->once())
->method('isUserAgent')
- ->willReturn(true);
+ ->willReturn(false);
$this->config
->expects($this->never())
->method('deleteUserValue');
@@ -170,6 +170,9 @@ class LoginControllerTest extends TestCase {
->with('nc_token')
->willReturn(null);
$this->request
+ ->method('getServerProtocol')
+ ->willReturn('https');
+ $this->request
->expects($this->once())
->method('isUserAgent')
->willReturn(true);
@@ -190,6 +193,9 @@ class LoginControllerTest extends TestCase {
->with('nc_token')
->willReturn('MyLoginToken');
$this->request
+ ->method('getServerProtocol')
+ ->willReturn('https');
+ $this->request
->expects($this->once())
->method('isUserAgent')
->willReturn(false);