From 68af7756e93435989f6ebf53bb83356ee33eb095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Tue, 19 May 2026 10:51:42 -0700 Subject: [PATCH] Update de.rs --- src/de.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/de.rs b/src/de.rs index 99934bb..26828f3 100644 --- a/src/de.rs +++ b/src/de.rs @@ -1357,7 +1357,7 @@ h 8 server: Server, } - let kdl = r#"server host="localhost" port=8080"#; + let kdl = "server host=localhost port=8080"; let config: Config = from_str(kdl).unwrap(); assert_eq!( config, @@ -1387,7 +1387,7 @@ h 8 server: Server, } - let kdl = r#"server "localhost" port=8080 "remote""#; + let kdl = "server localhost port=8080 remote"; let config: Config = from_str(kdl).unwrap(); assert_eq!( config, @@ -1416,7 +1416,7 @@ h 8 command: Command, } - let kdl = r#"command name="run" "--verbose" "--output" "result.txt""#; + let kdl = "command name=run --verbose --output result.txt"; let config: Config = from_str(kdl).unwrap(); assert_eq!( config, @@ -1444,7 +1444,7 @@ h 8 server: Server, } - let kdl = r#"server host="localhost" 8080 8081 8082"#; + let kdl = "server host=localhost 8080 8081 8082"; let config: Config = from_str(kdl).unwrap(); assert_eq!( config,