Fix participation detail test (a tournament is required)
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
850659bf48
commit
2e574d0659
|
@ -438,6 +438,7 @@ class TestStudentParticipation(TestCase):
|
||||||
self.user.registration.save()
|
self.user.registration.save()
|
||||||
|
|
||||||
# Team is valid
|
# Team is valid
|
||||||
|
self.team.participation.tournament = self.tournament
|
||||||
self.team.participation.valid = True
|
self.team.participation.valid = True
|
||||||
self.team.participation.save()
|
self.team.participation.save()
|
||||||
response = self.client.post(reverse("participation:team_leave"))
|
response = self.client.post(reverse("participation:team_leave"))
|
||||||
|
@ -479,6 +480,7 @@ class TestStudentParticipation(TestCase):
|
||||||
reverse("participation:participation_detail", args=(self.team.participation.pk,)),
|
reverse("participation:participation_detail", args=(self.team.participation.pk,)),
|
||||||
302, 403)
|
302, 403)
|
||||||
|
|
||||||
|
self.team.participation.tournament = self.tournament
|
||||||
self.team.participation.valid = True
|
self.team.participation.valid = True
|
||||||
self.team.participation.save()
|
self.team.participation.save()
|
||||||
response = self.client.get(reverse("participation:my_participation_detail"))
|
response = self.client.get(reverse("participation:my_participation_detail"))
|
||||||
|
|
Loading…
Reference in New Issue