diff --git a/backend/api/migrations/0017_merge_20240416_1054.py b/backend/api/migrations/0017_merge_20240416_1054.py index 2a7a22d8..12753b02 100644 --- a/backend/api/migrations/0017_merge_20240416_1054.py +++ b/backend/api/migrations/0017_merge_20240416_1054.py @@ -7,6 +7,7 @@ class Migration(migrations.Migration): dependencies = [ ('api', '0016_alter_checkresult_submission_and_more'), + ('api', '0016_course_excerpt_alter_checkresult_submission_and_more'), ('api', '0016_remove_checkresult_is_valid_submission_is_valid_and_more'), ] diff --git a/backend/api/tests/test_course.py b/backend/api/tests/test_course.py index e12260e5..0451a3c3 100644 --- a/backend/api/tests/test_course.py +++ b/backend/api/tests/test_course.py @@ -798,6 +798,7 @@ def test_create_course(self): data={ "name": "Introduction to Computer Science", "academic_startyear": 2022, + "excerpt": "Excerpt", "description": "An introductory course on computer science.", "faculty": faculty.id, },