From 0e40a5915d828dd73294f80aa5ef3e3d5c51c361 Mon Sep 17 00:00:00 2001 From: Erik Larsson Date: Tue, 19 Jan 2021 22:56:43 +0100 Subject: [PATCH] Fix client reference --- .../auth-backend/src/lib/catalog/CatalogIdentityClient.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-backend/src/lib/catalog/CatalogIdentityClient.test.ts b/plugins/auth-backend/src/lib/catalog/CatalogIdentityClient.test.ts index ffd118884e..e1a45a4465 100644 --- a/plugins/auth-backend/src/lib/catalog/CatalogIdentityClient.test.ts +++ b/plugins/auth-backend/src/lib/catalog/CatalogIdentityClient.test.ts @@ -17,7 +17,7 @@ import { CatalogClient } from '@backstage/catalog-client'; import { CatalogIdentityClient } from './CatalogIdentityClient'; -jest.mock('./CatalogClient'); +jest.mock('@backstage/catalog-client'); const MockedCatalogClient = CatalogClient as jest.Mock; describe('CatalogIdentityClient', () => {