From 356b9d602bfec493636ee66fa1e8d3a9bb8fe9e7 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Thu, 26 Nov 2020 10:52:43 +0100 Subject: [PATCH] style(format): make rustfmt happy --- src/tests/fakes.rs | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/tests/fakes.rs b/src/tests/fakes.rs index f531586e..c920d4d4 100644 --- a/src/tests/fakes.rs +++ b/src/tests/fakes.rs @@ -3,8 +3,8 @@ use ::std::collections::HashMap; use ::std::io::{Read, Write}; use ::std::os::unix::io::RawFd; use ::std::path::PathBuf; -use ::std::sync::{Arc, Mutex}; use ::std::sync::atomic::{AtomicBool, Ordering}; +use ::std::sync::{Arc, Mutex}; use ::std::time::{Duration, Instant}; use crate::os_input_output::OsApi; @@ -29,7 +29,11 @@ pub struct FakeStdinReader { } impl FakeStdinReader { - pub fn new(input_chars: Vec<[u8; 10]>, last_snapshot_time: Arc>, started_reading_from_pty: Arc) -> Self { + pub fn new( + input_chars: Vec<[u8; 10]>, + last_snapshot_time: Arc>, + started_reading_from_pty: Arc, + ) -> Self { FakeStdinReader { input_chars, read_position: 0, @@ -256,7 +260,11 @@ impl OsApi for FakeInputOutput { input_chars.push(*bytes); } } - let reader = FakeStdinReader::new(input_chars, self.last_snapshot_time.clone(), self.started_reading_from_pty.clone()); + let reader = FakeStdinReader::new( + input_chars, + self.last_snapshot_time.clone(), + self.started_reading_from_pty.clone(), + ); Box::new(reader) } fn get_stdout_writer(&self) -> Box {