chore: fix prettier formatting in provider test file

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Signed-off-by: pillaris <pillaris@adobe.com>
This commit is contained in:
pillaris
2026-04-27 15:28:39 +05:30
parent e1714a861c
commit 69cf79ea00
@@ -219,9 +219,7 @@ describe('MicrosoftGraphIncrementalEntityProvider', () => {
await provider.around(async () => {});
expect(logger.warn).toHaveBeenCalledWith(
expect.stringContaining(
'groupIncludeSubGroups is not supported',
),
expect.stringContaining('groupIncludeSubGroups is not supported'),
);
});
});
@@ -693,7 +691,11 @@ describe('MicrosoftGraphIncrementalEntityProvider', () => {
});
mockRequestOnePage.mockResolvedValueOnce({
items: [
{ id: 'grp-parent', displayName: 'Parent', mail: 'parent@example.com' },
{
id: 'grp-parent',
displayName: 'Parent',
mail: 'parent@example.com',
},
],
nextLink: undefined,
});