Skip to content

Commit

Permalink
Exclude IssueField.id==10 in test
Browse files Browse the repository at this point in the history
  • Loading branch information
znick committed Nov 5, 2023
1 parent 8ef3abc commit 0d7b134
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion anytask/courses/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def test_course_create_filled(self):

self.assertCountEqual(course.teachers.all(), teachers)
self.assertCountEqual(course.groups.all(), groups)
self.assertCountEqual(course.issue_fields.all(), IssueField.objects.exclude(id=11).exclude(id=12))
self.assertCountEqual(course.issue_fields.all(),
IssueField.objects.exclude(id=10).exclude(id=11).exclude(id=12))

self.assertEqual(course.contest_integrated, False)
self.assertEqual(course.send_rb_and_contest_together, False)
Expand Down

0 comments on commit 0d7b134

Please sign in to comment.