Skip to content

Commit 485a092

Browse files
authored
Merge pull request Expensify#68944 from lorretheboy/fix/68942
Investigate workflow job failing on main: test / test (job 2)
2 parents 8645f1e + f349790 commit 485a092

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/OptionsListUtilsTest.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ describe('OptionsListUtils', () => {
635635
expect(currentUserOption?.accountID).toBe(2);
636636

637637
// Then all personal details including the current user should be returned
638-
expect(results.personalDetails.length).toBe(10);
638+
expect(results.personalDetails.length).toBe(11);
639639
});
640640

641641
it('should exclude current user when includeCurrentUser is false', () => {
@@ -648,7 +648,7 @@ describe('OptionsListUtils', () => {
648648
expect(currentUserOption).toBeUndefined();
649649

650650
// Then all personal details except the current user should be returned
651-
expect(results.personalDetails.length).toBe(9);
651+
expect(results.personalDetails.length).toBe(10);
652652
});
653653
});
654654

0 commit comments

Comments
 (0)