fix a potential bug

This commit is contained in:
kissrobber
2014-07-21 00:35:33 +09:00
parent 33641578e6
commit 062dc6b15a

View File

@@ -105,7 +105,7 @@ getJasmineRequireObj().Clock = function() {
}
function argSlice(argsObj, n) {
return Array.prototype.slice.call(argsObj, 2);
return Array.prototype.slice.call(argsObj, n);
}
}