Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed May 5, 2020
1 parent 7b40fef commit 5cbf3c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x-pack/test/reporting/api/generate/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/

import { FtrProviderContext } from '../../../common/ftr_provider_context';
import { FtrProviderContext } from '../../ftr_provider_context';

// eslint-disable-next-line import/no-default-export
export default function({ loadTestFile }: FtrProviderContext) {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/reporting/api/usage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface UsageStats {
export default function({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const reportingAPI = getService('reportingAPI');
const usageAPI = getService('usageAPI' as any);
const usageAPI = getService('usageAPI' as any); // NOTE Usage API service is not Typescript

describe('reporting usage', () => {
before(() => reportingAPI.deleteAllReportingIndexes());
Expand Down

0 comments on commit 5cbf3c7

Please sign in to comment.