From ac8edadb2a27414100dea08e1c06d82323dc533e Mon Sep 17 00:00:00 2001 From: Sabin Date: Mon, 21 Aug 2023 09:59:52 +0545 Subject: [PATCH] added usercreation initiation code --- tests/acceptance/features/bootstrap/Provisioning.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/acceptance/features/bootstrap/Provisioning.php b/tests/acceptance/features/bootstrap/Provisioning.php index 7e61d5feb5c..63cb47b0c9d 100644 --- a/tests/acceptance/features/bootstrap/Provisioning.php +++ b/tests/acceptance/features/bootstrap/Provisioning.php @@ -831,6 +831,9 @@ public function usersHaveBeenCreated( "User '" . $user["userid"] . "' should exist but does not exist" ); } + foreach ($users as $user) { + $this->initializeUser($user['userid'], $user['password']); + } } /** @@ -2646,6 +2649,8 @@ public function userHasBeenCreated( $this->userExists($user), "User '$user' should exist but does not exist" ); + + $this->initializeUser($user, $password); } /**