about summary refs log tree commit diff
path: root/src/liballoc/tests/string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/liballoc/tests/string.rs')
-rw-r--r--src/liballoc/tests/string.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/liballoc/tests/string.rs b/src/liballoc/tests/string.rs
index 14f70fdf303..e5ce51a36ee 100644
--- a/src/liballoc/tests/string.rs
+++ b/src/liballoc/tests/string.rs
@@ -1,9 +1,7 @@
-use std::{
-    borrow::Cow,
-    collections::CollectionAllocErr::*,
-    mem::size_of,
-    usize, isize,
-};
+use std::borrow::Cow;
+use std::collections::CollectionAllocErr::*;
+use std::mem::size_of;
+use std::{usize, isize};
 
 pub trait IntoCow<'a, B: ?Sized> where B: ToOwned {
     fn into_cow(self) -> Cow<'a, B>;