Skip to content

Commit

Permalink
Update test_course.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tyboro2002 authored Apr 18, 2024
1 parent 083ba25 commit 3034024
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions backend/api/tests/test_course.py
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ def test_create_project(self):
follow=True,
)

self.assertEqual(response.status_code, 200)
self.assertEqual(response.status_code, 201)
self.assertTrue(course.projects.filter(name="become champions").exists())

# Make sure there are no groups automatically made
Expand Down Expand Up @@ -852,7 +852,7 @@ def test_create_project_with_zip_file_as_structure(self):
follow=True,
)

self.assertEqual(response.status_code, 200)
self.assertEqual(response.status_code, 201)
self.assertTrue(course.projects.filter(name="become champions").exists())

# Make sure there are structure checks added to the project
Expand Down Expand Up @@ -881,7 +881,7 @@ def test_create_project_with_number_groups(self):
follow=True,
)

self.assertEqual(response.status_code, 200)
self.assertEqual(response.status_code, 201)
self.assertTrue(course.projects.filter(name="become champions").exists())

# Make sure the groups are created
Expand Down Expand Up @@ -926,7 +926,7 @@ def test_create_individual_project(self):
follow=True,
)

self.assertEqual(response.status_code, 200)
self.assertEqual(response.status_code, 201)
self.assertTrue(course.projects.filter(name="become champions").exists())

# Make sure the groups are created
Expand Down

0 comments on commit 3034024

Please sign in to comment.