summaryrefslogtreecommitdiffstats
path: root/tests/file_json5.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/file_json5.rs')
-rw-r--r--tests/file_json5.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/file_json5.rs b/tests/file_json5.rs
index 0bf5138..f92bce5 100644
--- a/tests/file_json5.rs
+++ b/tests/file_json5.rs
@@ -9,7 +9,7 @@ extern crate serde_derive;
use config::*;
use float_cmp::ApproxEqUlps;
-use std::collections::HashMap;
+use linked_hash_map::LinkedHashMap;
use std::path::PathBuf;
#[derive(Debug, Deserialize)]
@@ -20,7 +20,7 @@ struct Place {
favorite: bool,
telephone: Option<String>,
reviews: u64,
- creator: HashMap<String, Value>,
+ creator: LinkedHashMap<String, Value>,
rating: Option<f32>,
}