my fork of dmp
Diffstat (limited to 'benches/diff.rs')
| -rw-r--r-- | benches/diff.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benches/diff.rs b/benches/diff.rs index 249359a..dcd9330 100644 --- a/benches/diff.rs +++ b/benches/diff.rs @@ -9,7 +9,7 @@ fn diff_main(c: &mut Criterion) { let new = std::fs::read_to_string(basedir.join("txt_new.txt")).unwrap(); let dmp = DiffMatchPatch::default(); - + c.bench_function("diff-match-patch", |bencher| { bencher.iter(|| dmp.diff_main(&old, &new).unwrap()); }); |