Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jan 7, 2020
1 parent c43a5ec commit c56cb42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/parse_and_replace.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#![cfg(not(windows))] // TODO: should fix these tests on Windows

use anyhow::{anyhow, ensure, Context, Error};
use log::{debug, info, warn};
use rustfix::apply_suggestions;
use std::collections::HashSet;
use std::env;
use std::ffi::OsString;
use std::fs;
use std::path::{Path, PathBuf};
use std::process::Output;
use anyhow::{Error, Context, ensure, anyhow};
use tempdir::TempDir;
use rustfix::apply_suggestions;
use log::{info, warn, debug};

mod fixmode {
pub const EVERYTHING: &str = "yolo";
Expand Down

0 comments on commit c56cb42

Please sign in to comment.