fix(curriculum): fix typo from MediaeError to MediaError (#62324)

This commit is contained in:
Giftea ☕ 2025-09-23 13:52:02 +01:00 committed by GitHub
parent e6066a1d50
commit 0d00012735
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,7 +64,7 @@ You should not raise a `MediaError` when `media_item` is a valid item.
try:
_c.add(Movie('The Matrix', 1999, 'The Wachowskis', 136))
except MediaError:
assert False, 'Expected not to raise a MediaeError with valid media_item'
assert False, 'Expected not to raise a MediaError with valid media_item'
except TypeError:
pass