[TEST] Fix minor random bug from #30794

This commit is contained in:
Albert Zaharovits 2018-05-27 19:59:49 +03:00
parent b55b079a90
commit e888467d0a
1 changed files with 2 additions and 2 deletions

View File

@ -471,7 +471,7 @@ public class CacheTests extends ESTestCase {
keys.add(key);
} else {
// invalidate with incorrect value
cache.invalidate(key, Integer.toString(key * randomIntBetween(2, 10)));
cache.invalidate(key, Integer.toString(key + randomIntBetween(2, 10)));
}
}
}
@ -506,7 +506,7 @@ public class CacheTests extends ESTestCase {
invalidated.add(i);
} else {
// invalidate with incorrect value
cache.invalidate(i, Integer.toString(i * randomIntBetween(2, 10)));
cache.invalidate(i, Integer.toString(i + randomIntBetween(2, 10)));
}
}
}