Skip to content

Commit

Permalink
remove unnecessary deprecations for the test config
Browse files Browse the repository at this point in the history
  • Loading branch information
mshustov committed Sep 4, 2020
1 parent b4db0ce commit 95551f2
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

import { ToolingLog } from '@kbn/dev-utils';
import { get, unset, defaultsDeep } from 'lodash';
import { defaultsDeep } from 'lodash';

import { Config } from './config';

Expand Down Expand Up @@ -51,11 +51,6 @@ async function getSettingsFromFile(log: ToolingLog, path: string, settingOverrid
await cache.get(configProvider)!
);

if (get(settingsWithDefaults, 'servers.webdriver') !== undefined) {
log.error('servers.webdriver is deprecated and is no longer used');
unset(settingsWithDefaults, 'servers.webdriver');
}

return settingsWithDefaults;
}

Expand Down

0 comments on commit 95551f2

Please sign in to comment.