Skip to content

Commit

Permalink
display names to find which property fails
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Jul 6, 2024
1 parent 58ffc07 commit 4d51670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions properties/MatchingOptional.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ static function() use ($repository, $user1, $user2, $user3) {
$assert
->expected($user1->id()->toString())
->not()
->in($found);
->in($found, $this->name1);
$assert
->expected($user2->id()->toString())
->in($found);
->in($found, $this->name2);
$assert
->expected($user3->id()->toString())
->in($found);
Expand Down

0 comments on commit 4d51670

Please sign in to comment.