Skip to content

Commit

Permalink
add an assertion in anActiveUserExists to ensure the test user is active
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Sep 10, 2024
1 parent 2f3696d commit 82bc40e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ protected function generateDummyPassword()
public function anActiveUserExists()
{
$newUser = $this->idBroker->createUser($this->testUserData);
Assert::assertTrue($newUser->getActive() === 'yes');
Assert::assertNotNull($newUser);
}

Expand Down

0 comments on commit 82bc40e

Please sign in to comment.