Explorar el Código

fix(tests): Fix remaining tests

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v29.0.0beta1
Joas Schilling hace 5 meses
padre
commit
2ee5c7a8f9
No account linked to committer's email address
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7
    1
      tests/Core/Controller/LoginControllerTest.php

+ 7
- 1
tests/Core/Controller/LoginControllerTest.php Ver fichero

@@ -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')

Cargando…
Cancelar
Guardar