From 4c5049261813577e707df58ece6a623e8c944cb7 Mon Sep 17 00:00:00 2001 From: Vaibhav Mule <vaibhavmule135@gmail.com> Date: Fri, 15 May 2020 15:10:35 +0530 Subject: [PATCH] fix all the tests --- hypha/apply/funds/tests/test_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypha/apply/funds/tests/test_models.py b/hypha/apply/funds/tests/test_models.py index a0486ff7f..335985ca4 100644 --- a/hypha/apply/funds/tests/test_models.py +++ b/hypha/apply/funds/tests/test_models.py @@ -231,14 +231,14 @@ class TestFormSubmission(TestCase): def test_workflow_and_status_assigned(self): self.submit_form() submission = ApplicationSubmission.objects.first() - first_phase = list(self.round_page.workflow.keys())[0] + first_phase = list(self.round_page.workflow.keys())[1] self.assertEqual(submission.workflow, self.round_page.workflow) self.assertEqual(submission.status, first_phase) def test_workflow_and_status_assigned_lab(self): self.submit_form(page=self.lab_page) submission = ApplicationSubmission.objects.first() - first_phase = list(self.lab_page.workflow.keys())[0] + first_phase = list(self.lab_page.workflow.keys())[1] self.assertEqual(submission.workflow, self.lab_page.workflow) self.assertEqual(submission.status, first_phase) -- GitLab