1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

rustfmt the recent change

This commit is contained in:
Sylvestre Ledru 2021-04-24 12:46:06 +02:00
parent 5f61848a38
commit 3ac481e4d3
4 changed files with 7 additions and 12 deletions

View file

@ -397,10 +397,10 @@ fn test_dev_full_show_all() {
#[cfg(unix)]
fn test_domain_socket() {
use std::io::prelude::*;
use std::sync::{Arc, Barrier};
use std::thread;
use tempdir::TempDir;
use unix_socket::UnixListener;
use std::sync::{Barrier, Arc};
let dir = TempDir::new("unix_socket").expect("failed to create dir");
let socket_path = dir.path().join("sock");