From 3a3dd296cc4bc58d383245da8f2d43b833ffb9cd Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 10 Apr 2022 12:42:09 +0200 Subject: [PATCH] schema: rustfmt Signed-off-by: Thomas Lamprecht --- proxmox-schema/src/property_string.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/proxmox-schema/src/property_string.rs b/proxmox-schema/src/property_string.rs index 20c9a30e..7b3aa61e 100644 --- a/proxmox-schema/src/property_string.rs +++ b/proxmox-schema/src/property_string.rs @@ -165,6 +165,12 @@ fn iterate_over_property_string() { ); assert!(iter.next().is_none()); - assert!(PropertyIterator::new(r#"key="open \\ value"#).next().unwrap().is_err()); - assert!(PropertyIterator::new(r#"key="open \\ value\""#).next().unwrap().is_err()); + assert!(PropertyIterator::new(r#"key="open \\ value"#) + .next() + .unwrap() + .is_err()); + assert!(PropertyIterator::new(r#"key="open \\ value\""#) + .next() + .unwrap() + .is_err()); }