changeset 71:607b47aafad6

tests: remove unused imports
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 01 Sep 2019 21:43:28 +0200
parents 06019f9a273c
children 6ce648912de8
files src/tests.rs
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/tests.rs	Sun Sep 01 20:44:42 2019 +0200
+++ b/src/tests.rs	Sun Sep 01 21:43:28 2019 +0200
@@ -2,8 +2,6 @@
 
 //! A general test suite aiming for wide coverage of positive and negative matches.
 
-use crate::{compile, matching, parse, repr};
-
 fn match_re(re: &str, s: &str) -> (bool, Vec<(usize, usize)>) {
     crate::match_re_str(re, s).unwrap()
 }