X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibtest%2Ftypes.rs;h=2619f99592aa9c9af705e19bc4d3e352c4eb8549;hb=6980f82c0d152446506fee4d4a45d8afdf4ad9a4;hp=89bcf2cf2853be1ee49aaa16c28f0ba30f18b02e;hpb=9175247e72a3d7cba4bdb61bc490da9be0460d51;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.