From 780c7207c445b6ff0605de152b0591a988d80fc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xory=20=E2=80=8B?= Date: Wed, 17 Apr 2024 11:57:51 +0000 Subject: [PATCH] fix: unit test syntax error --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 01c2ae4..315a28c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -63,7 +63,7 @@ mod tests { use super::*; #[test] - fn test_disk_locator { + fn test_disk_locator() { assert_eq!(get_block_devices(), vec!["vda".to_string()]) } }