From af353659c8ae0a4f52ac32990ae208b40bdc65d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Mon, 24 Jun 2024 10:02:31 +0200 Subject: [PATCH] run cargo fmt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler --- proxmox-sys/tests/xattr.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/proxmox-sys/tests/xattr.rs b/proxmox-sys/tests/xattr.rs index e004e589..02d43934 100644 --- a/proxmox-sys/tests/xattr.rs +++ b/proxmox-sys/tests/xattr.rs @@ -38,10 +38,7 @@ fn test_fsetxattr_fgetxattr() { assert_eq!(v0, b"value0".as_ref()); assert_eq!(v1, b"".as_ref()); - assert_eq!( - fgetxattr(fd, c"user.attribute1"), - Err(Errno::ENODATA) - ); + assert_eq!(fgetxattr(fd, c"user.attribute1"), Err(Errno::ENODATA)); std::fs::remove_file(&path).unwrap(); }