From 2427a64c3ccb05223bd25f876829c53f83f30378 Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 8 Feb 2022 12:34:22 +0100 Subject: [PATCH] Increase timeout when looking for user in list Signed-off-by: Louis Chemineau --- tests/acceptance/features/bootstrap/UsersSettingsContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/features/bootstrap/UsersSettingsContext.php b/tests/acceptance/features/bootstrap/UsersSettingsContext.php index ce03564710469..abed9f142d443 100644 --- a/tests/acceptance/features/bootstrap/UsersSettingsContext.php +++ b/tests/acceptance/features/bootstrap/UsersSettingsContext.php @@ -272,7 +272,7 @@ public function iSeeThatTheListOfUsersContainsTheUser($user) { if (!WaitFor::elementToBeEventuallyShown( $this->actor, self::rowForUser($user), - $timeout = 10 * $this->actor->getFindTimeoutMultiplier())) { + $timeout = 15 * $this->actor->getFindTimeoutMultiplier())) { Assert::fail("The user $user in the list of users is not shown yet after $timeout seconds"); } }