diff --git a/src/plugins/workspace/server/integration_tests/routes.test.ts b/src/plugins/workspace/server/integration_tests/routes.test.ts index d2cebf22b82..3a16e1e7d7e 100644 --- a/src/plugins/workspace/server/integration_tests/routes.test.ts +++ b/src/plugins/workspace/server/integration_tests/routes.test.ts @@ -232,7 +232,7 @@ describe('workspace service', () => { page: 1, }) .expect(200); - // Global and Management workspace will be created by default after workspace list API called. + // Global workspace will be created by default after workspace list API called. expect(listResult.body.result.total).toEqual(3); }); it('unable to perform operations on workspace by calling saved objects APIs', async () => { @@ -295,7 +295,7 @@ describe('workspace service', () => { }) .expect(200); expect(findResult.body.total).toEqual(0); - // Global and Management workspace will be created by default after workspace list API called. + // Global workspace will be created by default after workspace list API called. expect(listResult.body.result.total).toEqual(2); }); });