Skip to content

Commit af04e54

Browse files
mo8itweihanglo
andauthored
Apply suggestions from code review
Inline variables in `format!` Co-authored-by: Weihang Lo <[email protected]>
1 parent e45c2c0 commit af04e54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/rustfix/tests/parse_and_replace.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ fn get_fixture_files(p: &str) -> Result<Vec<PathBuf>, Error> {
234234

235235
fn assert_fixtures(dir: &str, mode: &str) {
236236
let files = get_fixture_files(dir)
237-
.with_context(|| format!("couldn't load dir `{}`", dir))
237+
.with_context(|| format!("couldn't load dir `{dir}`"))
238238
.unwrap();
239239
let mut failures = 0;
240240

src/cargo/ops/cargo_add/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ fn find_workspace_dep(toml_key: &str, root_manifest: &Path) -> CargoResult<Depen
10871087
.context("could not make `dependencies` into a table")?;
10881088
let dep_item = dependencies
10891089
.get(toml_key)
1090-
.with_context(|| format!("could not find {} in `workspace.dependencies`", toml_key))?;
1090+
.with_context(|| format!("could not find {toml_key} in `workspace.dependencies`"))?;
10911091
Dependency::from_toml(root_manifest.parent().unwrap(), toml_key, dep_item)
10921092
}
10931093

0 commit comments

Comments
 (0)