]> git.lizzy.rs Git - rust.git/blobdiff - src/libtest/types.rs
clean up error codes explanation
[rust.git] / src / libtest / types.rs
index 89bcf2cf2853be1ee49aaa16c28f0ba30f18b02e..2619f99592aa9c9af705e19bc4d3e352c4eb8549 100644 (file)
@@ -1,14 +1,14 @@
 //! Common types used by `libtest`.
 
-use std::fmt;
 use std::borrow::Cow;
+use std::fmt;
 
-use super::options;
 use super::bench::Bencher;
+use super::options;
 
 pub use NamePadding::*;
-pub use TestName::*;
 pub use TestFn::*;
+pub use TestName::*;
 
 /// Type of the test according to the [rust book](https://doc.rust-lang.org/cargo/guide/tests.html)
 /// conventions.