Skip to content

Commit

Permalink
fix: bug concerning PreAss Wmo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoStorm96 committed Jan 7, 2025
1 parent c66e841 commit c83f108
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion proposals/tests/proposal_submission_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,13 @@ class PreassessmentSubmitTestCase(
def setUp(self):
super().setUp()
self.proposal = self.pre_assessment
self.proposal.wmo = self.wmo
wmo = Wmo(
status=0,
metc="N",
is_medical="N",
)
wmo.save()
self.proposal.wmo = wmo


class PreapprovedSubmitTestCase(
Expand Down

0 comments on commit c83f108

Please sign in to comment.