From 69cf79ea0016714b73021af5aa11f8c5f8ae3aaa Mon Sep 17 00:00:00 2001 From: pillaris Date: Mon, 27 Apr 2026 15:28:39 +0530 Subject: [PATCH] chore: fix prettier formatting in provider test file Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: pillaris --- .../MicrosoftGraphIncrementalEntityProvider.test.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/catalog-backend-module-msgraph-incremental/src/MicrosoftGraphIncrementalEntityProvider.test.ts b/plugins/catalog-backend-module-msgraph-incremental/src/MicrosoftGraphIncrementalEntityProvider.test.ts index 954c8d43c0..2fbc4bccf5 100644 --- a/plugins/catalog-backend-module-msgraph-incremental/src/MicrosoftGraphIncrementalEntityProvider.test.ts +++ b/plugins/catalog-backend-module-msgraph-incremental/src/MicrosoftGraphIncrementalEntityProvider.test.ts @@ -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, });