From 5156f48dd4731c82a29d95f11ebb9a1fe2dd2ab2 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Mon, 7 Oct 2019 07:49:20 -0400 Subject: [PATCH] Fix two last unused Result types --- src/driver.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/driver.rs b/src/driver.rs index 0e63e5b..352a692 100644 --- a/src/driver.rs +++ b/src/driver.rs @@ -173,7 +173,7 @@ mod tests { fn multiple_startup_failure() { let temp_dir = tempdir().unwrap(); let dir = temp_dir.path().to_path_buf(); - temp_dir.close(); + temp_dir.close().unwrap(); let driver = DriverContext::default() .set_aeron_dir(&dir) @@ -211,7 +211,7 @@ mod tests { fn single_duty_cycle() { let temp_dir = tempdir().unwrap(); let path = temp_dir.path().to_path_buf(); - temp_dir.close(); + temp_dir.close().unwrap(); let driver = DriverContext::default() .set_aeron_dir(&path)