Skip to content
Snippets Groups Projects
Commit 390064ec authored by Dan Braghis's avatar Dan Braghis
Browse files

Fix test for non-lead access to determination form

parent 1fe66357
No related branches found
No related tags found
No related merge requests found
...@@ -63,8 +63,7 @@ class DeterminationFormTestCase(BaseTestCase): ...@@ -63,8 +63,7 @@ class DeterminationFormTestCase(BaseTestCase):
def test_cannot_access_form_if_not_lead(self): def test_cannot_access_form_if_not_lead(self):
submission = ApplicationSubmissionFactory(status='in_discussion') submission = ApplicationSubmissionFactory(status='in_discussion')
response = self.get_page(submission, 'form') response = self.get_page(submission, 'form')
self.assertContains(response, submission.title) self.assertEqual(response.status_code, 403)
self.assertContains(response, reverse('funds:submissions:detail', kwargs={'pk': submission.id}))
def test_cant_access_wrong_status(self): def test_cant_access_wrong_status(self):
submission = ApplicationSubmissionFactory() submission = ApplicationSubmissionFactory()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment