1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

chores: run cargo +1.40.0 fmt

Apparently fmt from 1.40.0 is a bit more strict in some places

Let me know if this is worthwhile merging :)
This commit is contained in:
ReggaeMuffin 2021-04-02 10:56:49 +01:00
parent de6aa69259
commit 2eb32d845e
No known key found for this signature in database
GPG key ID: B7A56D7FE881B7C5
13 changed files with 94 additions and 95 deletions

View file

@ -29,8 +29,8 @@ static TESTS_DIR: &str = "tests";
static FIXTURES_DIR: &str = "fixtures";
static ALREADY_RUN: &str = " you have already run this UCommand, if you want to run \
another command in the same test, use TestScenario::new instead of \
testing();";
another command in the same test, use TestScenario::new instead of \
testing();";
static MULTIPLE_STDIN_MEANINGLESS: &str = "Ucommand is designed around a typical use case of: provide args and input stream -> spawn process -> block until completion -> return output streams. For verifying that a particular section of the input stream is what causes a particular behavior, use the Command type directly.";
/// Test if the program is running under CI
@ -135,9 +135,7 @@ impl CmdResult {
pub fn tmpd(&self) -> Rc<TempDir> {
match &self.tmpd {
Some(ptr) => ptr.clone(),
None => {
panic!("Command not associated with a TempDir")
}
None => panic!("Command not associated with a TempDir"),
}
}