about summary refs log tree commit diff
path: root/library/std/tests/process_spawning.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/tests/process_spawning.rs')
-rw-r--r--library/std/tests/process_spawning.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/library/std/tests/process_spawning.rs b/library/std/tests/process_spawning.rs
index c56c111c37d..d249eb7d50a 100644
--- a/library/std/tests/process_spawning.rs
+++ b/library/std/tests/process_spawning.rs
@@ -1,9 +1,6 @@
 #![cfg(not(target_env = "sgx"))]
 
-use std::env;
-use std::fs;
-use std::process;
-use std::str;
+use std::{env, fs, process, str};
 
 mod common;