Skip to content

Commit

Permalink
Commit from GitHub Actions (test)
Browse files Browse the repository at this point in the history
  • Loading branch information
mise-en-dev committed Feb 2, 2024
1 parent 09cfa0c commit ce95422
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli/unset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ mod tests {
assert_cli_snapshot!("unset", "BAZ", @"");
assert_snapshot!(file::read_to_string(cf_path).unwrap());
remove_config_file(filename);
file::remove_file(&filename).unwrap();
file::remove_file(filename).unwrap();
}
}
2 changes: 1 addition & 1 deletion src/config/config_file/mise_toml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ mod tests {

fn parse(s: String) -> MiseToml {
let p = CWD.as_ref().unwrap().join(".test.mise.toml");
file::write(&p, &s).unwrap();
file::write(&p, s).unwrap();
MiseToml::from_file(&p).unwrap()
}

Expand Down

0 comments on commit ce95422

Please sign in to comment.