From ebaa6aab025ff6c31dcf4d12c251977f42e288fd Mon Sep 17 00:00:00 2001 From: Bobby Iliev Date: Tue, 24 Sep 2024 19:50:57 +0300 Subject: [PATCH] Change login test to not look for exact seconds --- tests/LoginTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/LoginTest.php b/tests/LoginTest.php index 6313c2745..1f5005ad2 100644 --- a/tests/LoginTest.php +++ b/tests/LoginTest.php @@ -62,6 +62,6 @@ public function testGetsLockedOutAfterFiveAttempts() ->press(__('voyager::generic.login')); } - $t->see(__('auth.throttle', ['seconds' => 59])); + $t->see('Too many login attempts. Please try again in'); } }