From 9fd38f29b4da7f29b9040ff480ee7f32c25f3b1e Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Thu, 29 Oct 2020 18:03:58 -0700 Subject: [PATCH] further make use statement consistent --- zebra-test/src/command.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zebra-test/src/command.rs b/zebra-test/src/command.rs index 5eac7914..763b4d40 100644 --- a/zebra-test/src/command.rs +++ b/zebra-test/src/command.rs @@ -6,9 +6,10 @@ use tracing::instrument; #[cfg(unix)] use std::os::unix::process::ExitStatusExt; -use std::{convert::Infallible as NoDir, io::BufRead}; use std::{ + convert::Infallible as NoDir, fmt::Write as _, + io::BufRead, io::{BufReader, Lines, Read}, path::Path, process::{Child, ChildStdout, Command, ExitStatus, Output, Stdio},