schema: rustfmt

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-04-10 12:42:09 +02:00
parent ae9d6e255c
commit 3a3dd296cc

View File

@ -165,6 +165,12 @@ fn iterate_over_property_string() {
); );
assert!(iter.next().is_none()); assert!(iter.next().is_none());
assert!(PropertyIterator::new(r#"key="open \\ value"#).next().unwrap().is_err()); assert!(PropertyIterator::new(r#"key="open \\ value"#)
assert!(PropertyIterator::new(r#"key="open \\ value\""#).next().unwrap().is_err()); .next()
.unwrap()
.is_err());
assert!(PropertyIterator::new(r#"key="open \\ value\""#)
.next()
.unwrap()
.is_err());
} }