Fix two last unused Result types

pull/6/head
Bradlee Speice 2019-10-07 07:49:20 -04:00
parent 2b8e32abb7
commit 5156f48dd4
1 changed files with 2 additions and 2 deletions

View File

@ -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)