]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tests/front/controller/visitor/LoginControllerTest.php
Use PSR-3 logger for login attempts
[github/shaarli/Shaarli.git] / tests / front / controller / visitor / LoginControllerTest.php
index 1312ccb79199c1620651e805ffdded4bd71a838a..00d9eab3bba7f81e4b7c323bd7e25bc99880a74d 100644 (file)
@@ -195,7 +195,7 @@ class LoginControllerTest extends TestCase
         $this->container->loginManager
             ->expects(static::once())
             ->method('checkCredentials')
-            ->with('1.2.3.4', '1.2.3.4', 'bob', 'pass')
+            ->with('1.2.3.4', 'bob', 'pass')
             ->willReturn(true)
         ;
         $this->container->loginManager->method('getStaySignedInToken')->willReturn(bin2hex(random_bytes(8)));