mirror of
https://git.proxmox.com/git/proxmox
synced 2025-05-02 17:44:31 +00:00
schema: rustfmt
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
ae9d6e255c
commit
3a3dd296cc
@ -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());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user