about summary refs log tree commit diff
path: root/library/std/tests/common/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/tests/common/mod.rs')
-rw-r--r--library/std/tests/common/mod.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/library/std/tests/common/mod.rs b/library/std/tests/common/mod.rs
index 1aad6549e76..7cf70c725e4 100644
--- a/library/std/tests/common/mod.rs
+++ b/library/std/tests/common/mod.rs
@@ -1,10 +1,9 @@
 #![allow(unused)]
 
-use rand::RngCore;
-use std::env;
-use std::fs;
 use std::path::{Path, PathBuf};
-use std::thread;
+use std::{env, fs, thread};
+
+use rand::RngCore;
 
 /// Copied from `std::test_helpers::test_rng`, since these tests rely on the
 /// seed not being the same for every RNG invocation too.