From 3f3858f0b37ff1b2bbbf4cb25574b6b0257b0528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Sun, 1 May 2022 14:14:16 +0000 Subject: [PATCH] TODO added --- tests/unit/Auth/AuthTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Auth/AuthTest.php b/tests/unit/Auth/AuthTest.php index 3ebeb8934..7493ccb3d 100644 --- a/tests/unit/Auth/AuthTest.php +++ b/tests/unit/Auth/AuthTest.php @@ -124,8 +124,8 @@ class AuthTest extends TestCase $hash = 'EPKgfALpS9Tvgr/y1ki7ubY4AEGJeWL3teakrnmOacN4XGiyD00lkzEHgqCQ71wGxoi/zb7Y9a4orOtvMV3/Jw=='; $options = [ 'salt' => '56dFqW+kswqktw==', 'cost_cpu' => 8, 'cost_memory' => 14, 'cost_parallel' => 1, 'length' => 64 ]; $generatedHash = Auth::passwordHash($plain, 'scrypt', $options); - \var_dump($generatedHash); $this->assertEquals(true, Auth::passwordVerify($plain, $generatedHash, 'scrypt', $options)); + // TODO: This test is failing. $this->assertEquals(true, Auth::passwordVerify($plain, $hash, 'scrypt', $options)); }