From 88608ea5b48cf0c9e763e176a2e70990f77c4933 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Mon, 22 Sep 2025 22:13:48 -0500 Subject: [PATCH] Test for prelim auditions showing on judging dashboard. --- .../app/Http/Controllers/Judging/JudgingControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/app/Http/Controllers/Judging/JudgingControllerTest.php b/tests/Feature/app/Http/Controllers/Judging/JudgingControllerTest.php index 041bde5..65f03f0 100644 --- a/tests/Feature/app/Http/Controllers/Judging/JudgingControllerTest.php +++ b/tests/Feature/app/Http/Controllers/Judging/JudgingControllerTest.php @@ -32,7 +32,7 @@ describe('JudgingController::index', function () { $response->assertSee($room->name); $response->assertSee($bonusScoreDefinition->name); }); - it('shows prelim auditions the user is assigned to juge', function () { + it('shows prelim auditions the user is assigned to judge', function () { $judge = User::factory()->create(); $room = Room::factory()->create(); $room->judges()->attach($judge);