Skip to content
Snippets Groups Projects
Commit becd8c4b authored by Erin Mullaney's avatar Erin Mullaney
Browse files

#805 test pep8 fix

parent 9de36d44
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ class TestStaffSubmissionView(BaseSubmissionViewTestCase):
def test_can_screen_submission(self):
screening_outcome = ScreeningStatusFactory()
response = self.post_page(self.submission, {'form-submitted-screening_form': '', 'screening_status': screening_outcome.id})
self.post_page(self.submission, {'form-submitted-screening_form': '', 'screening_status': screening_outcome.id})
submission = self.refresh(self.submission)
self.assertEqual(submission.screening_status, screening_outcome)
......@@ -636,7 +636,7 @@ class TestSuperUserSubmissionView(BaseSubmissionViewTestCase):
def test_can_screen_submission(self):
screening_outcome = ScreeningStatusFactory()
response = self.post_page(self.submission, {'form-submitted-screening_form': '', 'screening_status': screening_outcome.id})
self.post_page(self.submission, {'form-submitted-screening_form': '', 'screening_status': screening_outcome.id})
submission = self.refresh(self.submission)
self.assertEqual(submission.screening_status, screening_outcome)
......
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