Skip to content

Commit

Permalink
Expand fuzzing space (#639)
Browse files Browse the repository at this point in the history
turns out we only fuzz over primitive arrays, even though the
functionality for bools and bytes/strings exists.
  • Loading branch information
AdamGS authored Aug 16, 2024
1 parent 19e993c commit d84fbd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vortex-array/src/array/arbitrary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ impl<'a> Arbitrary<'a> for Array {
}

fn random_array(u: &mut Unstructured) -> Result<Array> {
match u.int_in_range(0..=9).unwrap() {
match u.int_in_range(0..=12).unwrap() {
0 => random_primitive::<u8>(u),
1 => random_primitive::<u16>(u),
2 => random_primitive::<u32>(u),
Expand Down

0 comments on commit d84fbd4

Please sign in to comment.