fix(tests): Fix remaining tests

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-01-09 15:58:02 +01:00
parent db11313152
commit 2ee5c7a8f9
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205

View file

@ -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');
@ -169,6 +169,9 @@ class LoginControllerTest extends TestCase {
->method('getCookie')
->with('nc_token')
->willReturn(null);
$this->request
->method('getServerProtocol')
->willReturn('https');
$this->request
->expects($this->once())
->method('isUserAgent')
@ -189,6 +192,9 @@ class LoginControllerTest extends TestCase {
->method('getCookie')
->with('nc_token')
->willReturn('MyLoginToken');
$this->request
->method('getServerProtocol')
->willReturn('https');
$this->request
->expects($this->once())
->method('isUserAgent')