my fork of dmp
Diffstat (limited to 'src/dmp.rs')
-rw-r--r--src/dmp.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dmp.rs b/src/dmp.rs
index 0ba49c4..4e8bf3c 100644
--- a/src/dmp.rs
+++ b/src/dmp.rs
@@ -3572,12 +3572,6 @@ mod tests {
DiffMatchPatch::diff_pretty_html(&diffs)?
);
- let old = std::fs::read_to_string("testdata/txt_old.txt").unwrap(); // [240, 159, 141, 140] -- FINALLY A BANANA
- let new = std::fs::read_to_string("testdata/txt_new.txt").unwrap(); // [240, 159, 141, 140] -- FINALLY A BANANA
- let diffs = dmp.diff_main(&old, &new)?;
-
- std::fs::write("testdata/diff.html", DiffMatchPatch::diff_pretty_html(&diffs)?).unwrap();
-
Ok(())
}