Skip to content

Commit

Permalink
Fix plugin API functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed Nov 13, 2019
1 parent fbdedff commit 9dc0949
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function TaskTestingAPI(kibana) {

const callCluster = server.plugins.elasticsearch.getCluster('admin').callWithInternalUser;
await callCluster('index', {
index: '.task_manager_test_result',
index: '.kibana_task_manager_test_result',
body: {
type: 'task',
taskId: taskInstance.id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function ({ getService }) {
const log = getService('log');
const retry = getService('retry');
const config = getService('config');
const testHistoryIndex = '.task_manager_test_result';
const testHistoryIndex = '.kibana_task_manager_test_result';
const supertest = supertestAsPromised(url.format(config.get('servers.kibana')));

describe('scheduling and running tasks', () => {
Expand Down

0 comments on commit 9dc0949

Please sign in to comment.