about summary refs log tree commit diff
path: root/library/std/tests/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/tests/env.rs')
-rw-r--r--library/std/tests/env.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/std/tests/env.rs b/library/std/tests/env.rs
index a1ca85c2145..4e472b4ce99 100644
--- a/library/std/tests/env.rs
+++ b/library/std/tests/env.rs
@@ -4,9 +4,10 @@ use std::ffi::{OsStr, OsString};
 use rand::distributions::{Alphanumeric, DistString};
 
 mod common;
-use common::test_rng;
 use std::thread;
 
+use common::test_rng;
+
 #[track_caller]
 fn make_rand_name() -> OsString {
     let n = format!("TEST{}", Alphanumeric.sample_string(&mut test_rng(), 10));