Fix overuse of search-and-replace

This commit is contained in:
Greg Fitzgerald 2018-02-26 17:03:50 -07:00
parent c6134cc25b
commit f98e9a2ad7
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ mod bench {
let start_hash = Default::default();
let events = create_ticks(&start_hash, 10_000, 8);
bencher.iter(|| {
assert!(verify_slice(&events, &start_hash));
assert!(verify_slice_seq(&events, &start_hash));
});
}
}