Skip to content

Commit

Permalink
remove randomness from test
Browse files Browse the repository at this point in the history
  • Loading branch information
AmonDeShir committed Dec 12, 2024
1 parent 51dba56 commit 94fa4de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/QuizInviteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function testAdminCannotViewInvitePanelInPublishedQuiz(): void
public function testFilteringAndSortingUsers(): void
{
$school = School::factory()->create();
User::factory()->count(8)->create();
User::factory()->count(8)->create(["firstname" => "test"]);
$user = User::factory()->create([
"firstname" => "Jan",
"school_id" => $school->id,
Expand Down

0 comments on commit 94fa4de

Please sign in to comment.