From 6221d86c6461c3e67906df9f680a1053cae45758 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 9 Mar 2022 14:29:53 +0100 Subject: [PATCH] schema: add another test case Signed-off-by: Wolfgang Bumiller --- proxmox-schema/src/property_string.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/proxmox-schema/src/property_string.rs b/proxmox-schema/src/property_string.rs index 964ac4f0..20c9a30e 100644 --- a/proxmox-schema/src/property_string.rs +++ b/proxmox-schema/src/property_string.rs @@ -166,4 +166,5 @@ 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()); }