fixed a bug

This commit is contained in:
Kevin Jahns 2015-07-09 01:33:46 +02:00
parent 0493d99d57
commit f862fae473

View File

@ -9,7 +9,7 @@ function getRandom (o) {
} else if (o.constructor === Object) { } else if (o.constructor === Object) {
var ks = []; var ks = [];
for (var key in o) { for (var key in o) {
keys.push(key); ks.push(key);
} }
return o[getRandom(ks)]; return o[getRandom(ks)];
} }
@ -20,7 +20,8 @@ function getRandomNumber(n) {
} }
return Math.floor(Math.random() * n); return Math.floor(Math.random() * n);
} }
var keys = ["a", "b", "c", "d", "e", "f", 1, 2, 3, 4, 5, 6];
var numberOfYMapTests = 30; var numberOfYMapTests = 30;
function applyRandomTransactions (users, transactions, numberOfTransactions) { function applyRandomTransactions (users, transactions, numberOfTransactions) {