mirror of
https://github.com/appium/appium.git
synced 2026-05-07 19:40:01 -05:00
Merge pull request #6317 from akhillb/lodash_pairs_error
Renaming forgotten pairs to toPairs
This commit is contained in:
+1
-1
@@ -54,7 +54,7 @@ function logDefaultCapabilitiesWarning (caps) {
|
||||
logger.info('Default capabilities, which will be added to each request ' +
|
||||
'unless overridden by desired capabilities:');
|
||||
util.inspect(caps);
|
||||
for (let [cap, value] of _.pairs(caps)) {
|
||||
for (let [cap, value] of _.toPairs(caps)) {
|
||||
logger.info(` ${cap}: ${util.inspect(value)}`);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user