summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Orchard <if_coding@fastmail.com>2021-07-29 00:02:39 -0700
committerDavid Orchard <if_coding@fastmail.com>2021-08-15 10:31:50 -0700
commit622efaca17256fb42dafc61c8df1f3037c1fb772 (patch)
tree63c91c56857a40ebdfaa95f9839ee36ec499e00f
parent7134592270190c28e538d580a3d55b0f1ff753f8 (diff)
Disable map order preservation for hjson
-rw-r--r--tests/file_hjson.rs11
-rw-r--r--tests/legacy/file_hjson.rs11
2 files changed, 4 insertions, 18 deletions
diff --git a/tests/file_hjson.rs b/tests/file_hjson.rs
index c6d9bd5..376993f 100644
--- a/tests/file_hjson.rs
+++ b/tests/file_hjson.rs
@@ -60,15 +60,8 @@ fn test_file() {
assert_eq!(s.elements.len(), 10);
assert_eq!(s.elements[3], "4".to_string());
assert_eq!(
- s.place
- .creator
- .into_iter()
- .collect::<Vec<(String, config::Value)>>(),
- vec![
- ("name".to_string(), "John Smith".into()),
- ("username".into(), "jsmith".into()),
- ("email".into(), "jsmith@localhost".into()),
- ]
+ s.place.creator["name"].clone().into_string().unwrap(),
+ "John Smith".to_string()
);
}
diff --git a/tests/legacy/file_hjson.rs b/tests/legacy/file_hjson.rs
index 2f5717f..b846c91 100644
--- a/tests/legacy/file_hjson.rs
+++ b/tests/legacy/file_hjson.rs
@@ -58,15 +58,8 @@ fn test_file() {
assert_eq!(s.elements.len(), 10);
assert_eq!(s.elements[3], "4".to_string());
assert_eq!(
- s.place
- .creator
- .into_iter()
- .collect::<Vec<(String, config::Value)>>(),
- vec![
- ("name".to_string(), "John Smith".into()),
- ("username".into(), "jsmith".into()),
- ("email".into(), "jsmith@localhost".into()),
- ]
+ s.place.creator["name"].clone().into_string().unwrap(),
+ "John Smith".to_string()
);
}