From 1a3d67f02cf44d2bdaad75caf23e7b02b78c538c Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Mon, 7 Oct 2019 07:07:16 -0400 Subject: [PATCH] Fix a variable name --- src/driver.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver.rs b/src/driver.rs index 43cdc3f..0e63e5b 100644 --- a/src/driver.rs +++ b/src/driver.rs @@ -211,7 +211,7 @@ mod tests { fn single_duty_cycle() { let temp_dir = tempdir().unwrap(); let path = temp_dir.path().to_path_buf(); - tempdir.close(); + temp_dir.close(); let driver = DriverContext::default() .set_aeron_dir(&path)