cargo +nightly fmt

This commit is contained in:
Greg Fitzgerald 2018-04-12 17:04:11 -06:00
parent 0dcde23b05
commit 9b12a79c8d
1 changed files with 10 additions and 10 deletions

View File

@ -318,20 +318,20 @@ mod tests {
use packet::{PacketRecycler, NUM_PACKETS};
use transaction::{memfind, test_tx};
use mint::Mint;
use std::thread::sleep;
use accountant::Accountant;
use std::sync::{Arc, Mutex};
use signature::{KeyPair, KeyPairUtil};
use historian::Historian;
use std::sync::atomic::{AtomicBool, Ordering};
use accountant_skel::AccountantSkel;
use std::time::Duration;
use std::net::UdpSocket;
use accountant_stub::AccountantStub;
use transaction::Transaction;
use std::io::sink;
use historian::Historian;
use mint::Mint;
use plan::Plan;
use signature::{KeyPair, KeyPairUtil};
use std::io::sink;
use std::net::UdpSocket;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex};
use std::thread::sleep;
use std::time::Duration;
use transaction::Transaction;
#[test]
fn test_layout() {