Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
freddieptf committed Sep 23, 2024
1 parent 084e9a4 commit a890213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lib/cht-session.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const mockSessionResponse = (headers: Array<string> = ['AuthSession=123']) => ({
const mockUserFacilityDoc = (facilityId: string = 'parent-id', roles:string[] = []) => ({
data: {
roles,
facility_id: facilityId,
facility_id: !facilityId ? undefined : facilityId,
}
});

Expand Down

0 comments on commit a890213

Please sign in to comment.