Skip to content

Commit

Permalink
fix: failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
deeonwuli committed Oct 14, 2024
1 parent 16efe26 commit 34f5483
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export class DiseaseOutbreakEventTestRepository implements DiseaseOutbreakEventR
notificationSourceCode: "1",
areasAffectedDistrictIds: [],
areasAffectedProvinceIds: [],
incidentStatus: IncidentStatus.RTSL_ZEB_OS_INCIDENT_STATUS_WATCH,
incidentStatus: NationalIncidentStatus.RTSL_ZEB_OS_INCIDENT_STATUS_WATCH,
emerged: { date: new Date(), narrative: "emerged" },
detected: { date: new Date(), narrative: "detected" },
notified: { date: new Date(), narrative: "notified" },
Expand All @@ -143,6 +143,7 @@ export class DiseaseOutbreakEventTestRepository implements DiseaseOutbreakEventR
},
incidentManagerName: "incidentManager",
notes: undefined,
status: "ACTIVE",
},
{
id: "2",
Expand All @@ -157,7 +158,7 @@ export class DiseaseOutbreakEventTestRepository implements DiseaseOutbreakEventR
notificationSourceCode: "2",
areasAffectedDistrictIds: [],
areasAffectedProvinceIds: [],
incidentStatus: IncidentStatus.RTSL_ZEB_OS_INCIDENT_STATUS_WATCH,
incidentStatus: NationalIncidentStatus.RTSL_ZEB_OS_INCIDENT_STATUS_WATCH,
emerged: { date: new Date(), narrative: "emerged" },
detected: { date: new Date(), narrative: "detected" },
notified: { date: new Date(), narrative: "notified" },
Expand All @@ -173,6 +174,7 @@ export class DiseaseOutbreakEventTestRepository implements DiseaseOutbreakEventR
},
incidentManagerName: "incidentManager",
notes: undefined,
status: "COMPLETED",
},
]);
}
Expand Down

0 comments on commit 34f5483

Please sign in to comment.