rustfmt config

This commit is contained in:
Cyryl Płotnicki 2018-10-04 13:42:39 +01:00
parent dafa3db49d
commit 63d8d4ff29
2 changed files with 3 additions and 2 deletions

1
rustfmt.toml Normal file
View file

@ -0,0 +1 @@
max_width = 128

View file

@ -120,11 +120,11 @@ mod rustback {
let restore_engine = RestoreEngine::new(&repository.path(), &restore_target.path());
restore_engine.restore()?;
let are_source_and_target_different =
is_different(&source.path(), &restore_target.path()).unwrap();
let are_source_and_target_different = is_different(&source.path(), &restore_target.path()).unwrap();
assert!(!are_source_and_target_different);
Ok(())
}
}
}