From 61623e8c7070e294fc345de44e9979f92539c281 Mon Sep 17 00:00:00 2001 From: Andreas Tolfsen Date: Wed, 1 Apr 2015 16:17:05 +0100 Subject: [PATCH] Bug 1150041: Fix max_len extraction in GeckoDriver#multiAction Fixes use of pinch() routine in gestures.py as part of Gaia UI tests. Regressed as part of bug 1107706. r=dburns --HG-- extra : rebase_source : a22302712be7cf2eb8ac49fa2d221b8a2ea923f8 --- testing/marionette/driver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/marionette/driver.js b/testing/marionette/driver.js index d8dcaa07ff6d..b2cd92060daf 100644 --- a/testing/marionette/driver.js +++ b/testing/marionette/driver.js @@ -1924,7 +1924,7 @@ GeckoDriver.prototype.multiAction = function(cmd, resp) { case Context.CONTENT: this.addFrameCloseListener("multi action chain"); yield this.listener.multiAction( - {value: value, maxlen: max_len} = cmd.parameters); + {value: value, max_len: maxlen} = cmd.parameters); break; } };