summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/plugins.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins.rs b/tests/plugins.rs
index c45096f..1675a75 100644
--- a/tests/plugins.rs
+++ b/tests/plugins.rs
@@ -75,7 +75,7 @@ fn build_plugin(src: &str) -> RemovePath {
     let status = child.wait().expect("failed to wait for compiler");
     assert!(status.success(), "failed to build plugin");
 
-    RemovePath(PathBuf::from(out_bin))
+    RemovePath(out_bin)
 }
 
 fn run_plugin(bin_path: &Path, with_sandbox: bool) {