UpdateEntry action fully tested

This commit is contained in:
Matt Young 2025-07-01 09:58:48 -05:00
parent bed4e0671e
commit 42894c40c1
1 changed files with 0 additions and 2 deletions

View File

@ -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');