From 67540afbe56647806d8e225d97f5aaca08910ff5 Mon Sep 17 00:00:00 2001 From: jpdjere Date: Wed, 25 Oct 2023 14:17:47 +0200 Subject: [PATCH] Undo control --- .../security_and_spaces/prebuilt_rules/fleet_integration.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/detection_engine_api_integration/security_and_spaces/prebuilt_rules/fleet_integration.ts b/x-pack/test/detection_engine_api_integration/security_and_spaces/prebuilt_rules/fleet_integration.ts index 32ac442c908e2..ec4244ba08059 100644 --- a/x-pack/test/detection_engine_api_integration/security_and_spaces/prebuilt_rules/fleet_integration.ts +++ b/x-pack/test/detection_engine_api_integration/security_and_spaces/prebuilt_rules/fleet_integration.ts @@ -5,7 +5,7 @@ * 2.0. */ import expect from 'expect'; -// import { ALL_SAVED_OBJECT_INDICES } from '@kbn/core-saved-objects-server'; +import { ALL_SAVED_OBJECT_INDICES } from '@kbn/core-saved-objects-server'; import { FtrProviderContext } from '../../common/ftr_provider_context'; import { deleteAllRules, @@ -48,7 +48,7 @@ export default ({ getService }: FtrProviderContext): void => { overrideExistingPackage: true, }); - // await es.indices.refresh({ index: ALL_SAVED_OBJECT_INDICES }); + await es.indices.refresh({ index: ALL_SAVED_OBJECT_INDICES }); // Verify that status is updated after package installation const statusAfterPackageInstallation = await getPrebuiltRulesAndTimelinesStatus(supertest);