]> git.lizzy.rs Git - rust.git/blobdiff - src/liballoc/tests/vec.rs
Remove unused AsciiExt imports and fix tests related to ascii methods
[rust.git] / src / liballoc / tests / vec.rs
index 0e25da5bd3077f099034e6deaaabdba5e7adf5ac..9cfde5dcc73c8433b0f37f030a30b1b0b6fbb9b0 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::ascii::AsciiExt;
 use std::borrow::Cow;
 use std::mem::size_of;
 use std::panic;
@@ -966,5 +965,3 @@ fn drain_filter_complex() {
         assert_eq!(vec, vec![1, 3, 5, 7, 9, 11, 13, 15, 17, 19]);
     }
 }
-
-