From 42894c40c1c0ba6e5c66c81579706d17a598cc03 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Tue, 1 Jul 2025 09:58:48 -0500 Subject: [PATCH] UpdateEntry action fully tested --- tests/Feature/app/Actions/Entries/UpdateEntryTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Feature/app/Actions/Entries/UpdateEntryTest.php b/tests/Feature/app/Actions/Entries/UpdateEntryTest.php index 23e70fc..08fd6e3 100644 --- a/tests/Feature/app/Actions/Entries/UpdateEntryTest.php +++ b/tests/Feature/app/Actions/Entries/UpdateEntryTest.php @@ -73,8 +73,6 @@ it('will not move to an audition for which the student is too young', function ( 'maximum_grade' => 11, ]); $this->entry->student->update(['grade' => 9]); - dump('student grade: '.$this->entry->student->grade); - dump('new audition minimum: '.$newAudition->minimum_grade); ($this->entryScribe)($this->entry, ['audition_id' => $newAudition->id]); })->throws(AuditionAdminException::class, 'The student is too young to enter that audition');