Skip to content

Commit

Permalink
fix: Import the proper support module (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Jan 7, 2024
1 parent f88d7cc commit e9afc21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/doctor/required-checks.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { doctor as doctorCommon } from 'appium-android-driver';
import { exec } from 'teen_process';
import { fs, system, doctor } from '@appium/support';
import { fs, system, doctor } from 'appium/support';
import path from 'node:path';

export const androidHomeCheck = doctorCommon.androidHomeCheck;
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-espresso.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const _ = require('lodash');
const path = require('path');
const { logger, fs } = require('@appium/support');
const { logger, fs } = require('appium/support');
const { ServerBuilder } = require('../build/lib/server-builder.js');

const LOG = new logger.getLogger('EspressoBuild');
Expand Down

0 comments on commit e9afc21

Please sign in to comment.