Skip to content

Commit e568fab

Browse files
authored
Don't fuzz filter for list arrays (#1823)
1 parent 6db1e35 commit e568fab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fuzz/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ const ALL_ACTIONS: RangeInclusive<usize> = 0..=4;
179179

180180
fn actions_for_encoding(encoding: EncodingRef) -> HashSet<usize> {
181181
if ListEncoding::ID == encoding.id() {
182-
// compress, slice and filter
183-
vec![0, 1, 4].into_iter().collect()
182+
// compress, slice
183+
vec![0, 1].into_iter().collect()
184184
} else {
185185
ALL_ACTIONS.collect()
186186
}

0 commit comments

Comments
 (0)