Skip to content

Commit

Permalink
getVolunteerRanks test fix (#2704)
Browse files Browse the repository at this point in the history
* getVolunteerRanks test fix

* test fix
  • Loading branch information
prayanshchh authored Nov 20, 2024
1 parent e978dd7 commit 37cfbde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/resolvers/Query/getVolunteerRanks.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe("resolvers -> Query -> getVolunteerRanks", () => {
},
{},
)) as unknown as VolunteerRank[];
expect(volunteerRanks[0].hoursVolunteered).toEqual(2);
expect(volunteerRanks[0].hoursVolunteered).toEqual(6);
expect(volunteerRanks[0].user._id).toEqual(testUser1?._id);
expect(volunteerRanks[0].rank).toEqual(1);
});
Expand Down

0 comments on commit 37cfbde

Please sign in to comment.