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 6176a32..e95cc07 100644
--- a/tests/plugins.rs
+++ b/tests/plugins.rs
@@ -24,7 +24,7 @@ struct RemovePath(PathBuf);
 impl Drop for RemovePath {
     fn drop(&mut self) {
         if let Err(e) = remove_file(&self.0) {
-            eprintln!("failed to remove path: {:?}", e);
+            eprintln!("failed to remove path: {}", e);
         }
     }
 }