Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed Jun 1, 2021
1 parent 713a267 commit dde2d1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import { relative } from 'path';

import { ToolingLog } from '@kbn/dev-utils';

Expand Down Expand Up @@ -121,7 +122,7 @@ export class FunctionalTestRunner {
}

// eslint-disable-next-line
console.log(`--- Running ${Path.relative(process.cwd(), this.configFile)}`);
console.log(`--- Running ${relative(process.cwd(), this.configFile)}`);

const dockerServers = new DockerServersService(
config.get('dockerServers'),
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-test/src/functional_tests/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export async function runTests(options) {
continue;
}

console.log(`--- Running ${Path.relative(process.cwd(), configPath)}`);
console.log(`--- Running ${relative(process.cwd(), configPath)}`);

await withProcRunner(log, async (procs) => {
const config = await readConfigFile(log, configPath);
Expand Down

0 comments on commit dde2d1d

Please sign in to comment.