Skip to content

Commit

Permalink
added usercreation initiation code
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Panta committed Aug 21, 2023
1 parent e77efed commit ac8edad
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/acceptance/features/bootstrap/Provisioning.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
}
}

/**
Expand Down Expand Up @@ -2646,6 +2649,8 @@ public function userHasBeenCreated(
$this->userExists($user),
"User '$user' should exist but does not exist"
);

$this->initializeUser($user, $password);
}

/**
Expand Down

0 comments on commit ac8edad

Please sign in to comment.