Skip to content

Commit

Permalink
Don't use fixed email addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Oct 28, 2023
1 parent 7f62a2e commit 35a5029
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Integration/Auth/UserQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public function ascendingSortOrder(): void
#[Test]
public function descendingSortOrder(): void
{
$earlier = $this->createUserWithEmailAndPassword('descendingSortOrderEarlier@example.com');
$later = $this->createUserWithEmailAndPassword('descendingSortOrderLater@example.com');
$earlier = $this->createUserWithEmailAndPassword();
$later = $this->createUserWithEmailAndPassword();

$query = [
'sortBy' => UserQuery::FIELD_CREATED_AT,
Expand Down

0 comments on commit 35a5029

Please sign in to comment.