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
This commit is contained in:
Andreas Tolfsen 2015-04-01 16:17:05 +01:00
parent 905f769cc8
commit 532b8c3523

View File

@ -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;
}
};