Skip to content

Commit

Permalink
fixup paths
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneseymour committed Aug 4, 2021
1 parent 631af43 commit 7bea3ad
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
// we need to load the following in every situation as deleting
// a space deletes all of the associated saved objects
await kibanaServer.importExport.load(
'fixtures/kbn_archiver/discover/feature_controls/spaces'
'x-pack/test/functional/fixtures/kbn_archiver/discover/feature_controls/spaces'
);
await spacesService.create({
id: 'custom_space',
Expand All @@ -50,7 +50,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
after(async () => {
await spacesService.delete('custom_space');
await kibanaServer.importExport.unload(
'fixtures/kbn_archiver/discover/feature_controls/spaces'
'x-pack/test/functional/fixtures/kbn_archiver/discover/feature_controls/spaces'
);
});

Expand Down Expand Up @@ -86,7 +86,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
// we need to load the following in every situation as deleting
// a space deletes all of the associated saved objects
await kibanaServer.importExport.load(
'fixtures/kbn_archiver/discover/feature_controls/spaces'
'x-pack/test/functional/fixtures/kbn_archiver/discover/feature_controls/spaces'
);
await spacesService.create({
id: 'custom_space',
Expand All @@ -98,7 +98,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
after(async () => {
await spacesService.delete('custom_space');
await kibanaServer.importExport.unload(
'fixtures/kbn_archiver/discover/feature_controls/spaces'
'x-pack/test/functional/fixtures/kbn_archiver/discover/feature_controls/spaces'
);
});

Expand Down

0 comments on commit 7bea3ad

Please sign in to comment.