diff options
Diffstat (limited to 'cli/tests/integration/vendor_tests.rs')
-rw-r--r-- | cli/tests/integration/vendor_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration/vendor_tests.rs b/cli/tests/integration/vendor_tests.rs index 11fee5686..cd2f7f12e 100644 --- a/cli/tests/integration/vendor_tests.rs +++ b/cli/tests/integration/vendor_tests.rs @@ -530,7 +530,7 @@ fn update_existing_config_test() { } fn success_text(module_count: &str, dir: &str, has_import_map: bool) -> String { - let mut text = format!("Vendored {} into {} directory.", module_count, dir); + let mut text = format!("Vendored {module_count} into {dir} directory."); if has_import_map { let f = format!( concat!( @@ -544,7 +544,7 @@ fn success_text(module_count: &str, dir: &str, has_import_map: bool) -> String { dir.to_string() } ); - write!(text, "{}", f).unwrap(); + write!(text, "{f}").unwrap(); } text } |