Fix blob_io test (#5818)

This commit is contained in:
bojanserafimov
2023-11-09 10:47:03 -05:00
committed by GitHub
parent 842223b47f
commit 4469b1a62c

View File

@@ -327,7 +327,7 @@ mod tests {
let mut sz: u16 = rng.gen();
// Make 50% of the arrays small
if rng.gen() {
sz |= 63;
sz &= 63;
}
random_array(sz.into())
})