From 970292ff67267dfbfa313241dc5f21e3e5d0753e Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Mon, 21 Apr 2025 14:08:09 -0500 Subject: [PATCH] Trying to fix tests Signed-off-by: Andre Wanlin --- .../src/analyzers/GithubLocationAnalyzer.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/catalog-backend-module-github/src/analyzers/GithubLocationAnalyzer.test.ts b/plugins/catalog-backend-module-github/src/analyzers/GithubLocationAnalyzer.test.ts index c435366931..951e67284b 100644 --- a/plugins/catalog-backend-module-github/src/analyzers/GithubLocationAnalyzer.test.ts +++ b/plugins/catalog-backend-module-github/src/analyzers/GithubLocationAnalyzer.test.ts @@ -113,7 +113,7 @@ describe('GithubLocationAnalyzer', () => { }); const analyzer = new GithubLocationAnalyzer({ - catalog: catalogServiceMock(), + catalog: catalogServiceMock.mock(), auth: mockAuthService, config, }); @@ -140,7 +140,7 @@ describe('GithubLocationAnalyzer', () => { }); const analyzer = new GithubLocationAnalyzer({ - catalog: catalogServiceMock(), + catalog: catalogServiceMock.mock(), auth: mockAuthService, config, }); @@ -166,7 +166,7 @@ describe('GithubLocationAnalyzer', () => { }); const analyzer = new GithubLocationAnalyzer({ - catalog: catalogServiceMock(), + catalog: catalogServiceMock.mock(), auth: mockAuthService, config, });