We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37aa64b commit 2e15cfeCopy full SHA for 2e15cfe
1 file changed
crates/vite_global_cli/src/shim/mod.rs
@@ -261,10 +261,10 @@ mod tests {
261
262
assert_eq!(detect_shim_tool(tool), Some(tool.to_string()));
263
assert_eq!(
264
- detect_shim_tool(&format!("/home/user/.vite-plus/bin/{tool}")),
+ detect_shim_tool(&vite_str::format!("/home/user/.vite-plus/bin/{tool}")),
265
Some(tool.to_string()),
266
);
267
- assert_eq!(detect_shim_tool(&format!("{tool}.exe")), Some(tool.to_string()),);
+ assert_eq!(detect_shim_tool(&vite_str::format!("{tool}.exe")), Some(tool.to_string()),);
268
}
269
270
#[test]
0 commit comments