From 0669c428bd9f40641183f57b390fa4150fa72f0d Mon Sep 17 00:00:00 2001 From: "Christiane (Tina) Heiligers" Date: Tue, 25 Apr 2023 14:21:14 -0700 Subject: [PATCH] fix one more failure in get --- x-pack/test/spaces_api_integration/common/suites/get.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/x-pack/test/spaces_api_integration/common/suites/get.ts b/x-pack/test/spaces_api_integration/common/suites/get.ts index eee54af57dcd3..22862d7d67898 100644 --- a/x-pack/test/spaces_api_integration/common/suites/get.ts +++ b/x-pack/test/spaces_api_integration/common/suites/get.ts @@ -57,21 +57,18 @@ export function getTestSuiteFactory(esArchiver: any, supertest: SuperAgent) description: 'This is the default space', _reserved: true, disabledFeatures: [], - managed: false, }, { id: 'space_1', name: 'Space 1', description: 'This is the first test space', disabledFeatures: [], - managed: false, }, { id: 'space_2', name: 'Space 2', description: 'This is the second test space', disabledFeatures: [], - managed: false, }, ]; expect(resp.body).to.eql(allSpaces.find((space) => space.id === spaceId));