Fix interrupt tests (#1505)

This commit is contained in:
Casey Rodarmor 2023-01-12 23:53:14 -08:00 committed by GitHub
parent c5c9831915
commit 3bf3be9af8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ fn interrupt_test(arguments: &[&str], justfile: &str) {
let start = Instant::now();
let mut child = Command::new(executable_path("just"))
.current_dir(tmp)
.current_dir(&tmp)
.args(arguments)
.spawn()
.expect("just invocation failed");