Skip to content

Commit

Permalink
10553: Fix test name;
Browse files Browse the repository at this point in the history
  • Loading branch information
John Cruz committed Dec 13, 2024
1 parent d49af18 commit 86c0841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/src/business/entities/factories/UserFactory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('UserFactory', () => {
expect(classInstance).toEqual(Practitioner);
});

it('should return "Practitioner" class type if role is "inactivePractitioner"', () => {
it('should return "User" class type if role is "admin"', () => {
const TEST_USER = { role: ROLES.admin };
const userFactory = new UserFactory(TEST_USER);
const classInstance = userFactory.getClass();
Expand Down

0 comments on commit 86c0841

Please sign in to comment.