From 386b75fdcbdbfb2cfdae35056a8bf8985b099436 Mon Sep 17 00:00:00 2001 From: Christiane Heiligers Date: Sat, 9 Jul 2022 14:39:28 -0700 Subject: [PATCH] reverts mock back to original implementation --- .../core-preboot-server-mocks/src/preboot_service.mock.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts b/packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts index 930b915fdeb36..f0077549f33a1 100644 --- a/packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts +++ b/packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts @@ -5,13 +5,12 @@ * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ - +import { PublicMethodsOf } from '@kbn/utility-types'; import type { InternalPrebootServicePreboot, PrebootService, } from '@kbn/core-preboot-server-internal'; import type { PrebootServicePreboot } from '@kbn/core-preboot-server'; -import { PublicMethodsOf } from '@kbn/utility-types'; export type InternalPrebootServicePrebootMock = jest.Mocked; export type PrebootServicePrebootMock = jest.Mocked;