Skip to content

Commit

Permalink
Scrutinizer bugs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
reeteshranjan committed Nov 27, 2017
1 parent db27f62 commit 642a6f4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion lib/platforms/core/platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

let
uuidv4 = require('uuid/v4'),
retry = require('p-retry'),
ps = require('ps-node'),
Bluebird = require('bluebird'),
Log = require('./../../core/log').Log,
Expand Down
3 changes: 1 addition & 2 deletions lib/platforms/crossbrowsertesting/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ class Job extends JobBase {
if(!browsers || !browsers.length) {
throw new InputError('Platforms.CrossBrowserTesting.Job: no browsers specified for createMultiple')
}
let bRetAll = JobBase.createMultiple(url, browsers, capabilities || { }, runId, isNative),
promises = [ ]
let bRetAll = JobBase.createMultiple(url, browsers, capabilities || { }, runId, isNative)
return Bluebird.all(bRetAll.map(bRet => {
let
vRet = Values.js(bRet.browser || { }, bRet.capabilities),
Expand Down

0 comments on commit 642a6f4

Please sign in to comment.