Skip to content

Commit

Permalink
fix fuzzing
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangpengHao committed Oct 30, 2024
1 parent 3726a90 commit 5f4a36d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzz/fuzz_targets/btree_check.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![no_main]
use arbitrary::Arbitrary;
use congee::Art;
use congee::Congee;
use libfuzzer_sys::fuzz_target;
use std::collections::BTreeMap;

Expand All @@ -16,7 +16,7 @@ enum MapMethod {

fuzz_target!(|methods: Vec<MapMethod>| {
let capacity = 10_000_000;
let art = Art::<usize, usize>::default();
let art = Congee::<usize, usize>::default();
let mut bt_map = BTreeMap::new();

let mut art_scan_buffer = vec![(0, 0); 128];
Expand Down

0 comments on commit 5f4a36d

Please sign in to comment.