summaryrefslogtreecommitdiffstats
path: root/tests/file_yaml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/file_yaml.rs')
-rw-r--r--tests/file_yaml.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/file_yaml.rs b/tests/file_yaml.rs
index 2ea9db4..4b1c108 100644
--- a/tests/file_yaml.rs
+++ b/tests/file_yaml.rs
@@ -7,7 +7,7 @@ extern crate serde;
#[macro_use]
extern crate serde_derive;
-use std::collections::HashMap;
+use linked_hash_map::LinkedHashMap;
use std::path::PathBuf;
use config::*;
@@ -21,7 +21,7 @@ struct Place {
favorite: bool,
telephone: Option<String>,
reviews: u64,
- creator: HashMap<String, Value>,
+ creator: LinkedHashMap<String, Value>,
rating: Option<f32>,
}