X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibtest%2Ftypes.rs;h=2619f99592aa9c9af705e19bc4d3e352c4eb8549;hb=3850d96379126087240b640470632362a5d32234;hp=89bcf2cf2853be1ee49aaa16c28f0ba30f18b02e;hpb=ac162c6abe34cdf965afc0389f6cefa79653c63b;p=rust.git diff --git a/src/libtest/types.rs b/src/libtest/types.rs index 89bcf2cf285..2619f99592a 100644 --- a/src/libtest/types.rs +++ b/src/libtest/types.rs @@ -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.