From caeb3bafbfe5852ec9ec608bfb875ac9dbb0cd0b Mon Sep 17 00:00:00 2001 From: Jonathan Lipps Date: Tue, 29 Jul 2014 10:35:08 -0700 Subject: [PATCH] use correct shutdown call signature to fix real safari hanging on DELETE session fix #3244 --- lib/devices/ios/safari.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/devices/ios/safari.js b/lib/devices/ios/safari.js index 7aef79a46..23f5807e4 100644 --- a/lib/devices/ios/safari.js +++ b/lib/devices/ios/safari.js @@ -151,7 +151,7 @@ Safari.prototype._stop = IOS.prototype.stop; Safari.prototype.stop = function (cb) { if (this.args.udid) { logger.debug("Stopping safariLauncher"); - this.shutdown(null, null, cb); + this.shutdown(null, cb); } else { this._stop(cb); }