From 01442003fe0df6748603e067c2375288dc910237 Mon Sep 17 00:00:00 2001 From: Matthias Wilhelm Date: Mon, 15 Jun 2020 08:44:24 +0200 Subject: [PATCH] Rename space id for disabled index pattern test (#68990) --- .../apps/discover/feature_controls/discover_spaces.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/x-pack/test/functional/apps/discover/feature_controls/discover_spaces.ts b/x-pack/test/functional/apps/discover/feature_controls/discover_spaces.ts index 506cb2c09d4cc..6fdd52f292c31 100644 --- a/x-pack/test/functional/apps/discover/feature_controls/discover_spaces.ts +++ b/x-pack/test/functional/apps/discover/feature_controls/discover_spaces.ts @@ -142,19 +142,19 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { describe('space with index pattern management disabled', () => { before(async () => { await spacesService.create({ - id: 'custom_space', - name: 'custom_space', + id: 'custom_space_no_index_patterns', + name: 'custom_space_no_index_patterns', disabledFeatures: ['indexPatterns'], }); }); after(async () => { - await spacesService.delete('custom_space'); + await spacesService.delete('custom_space_no_index_patterns'); }); it('Navigates to Kibana home rather than index pattern management when no index patterns exist', async () => { await PageObjects.common.navigateToUrl('discover', '', { - basePath: '/s/custom_space', + basePath: '/s/custom_space_no_index_patterns', ensureCurrentUrl: false, }); await testSubjects.existOrFail('homeApp', { timeout: config.get('timeouts.waitFor') });