summaryrefslogtreecommitdiffstats
path: root/tests/legacy/file_hjson.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/legacy/file_hjson.rs')
-rw-r--r--tests/legacy/file_hjson.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/legacy/file_hjson.rs b/tests/legacy/file_hjson.rs
index b846c91..8ca2d68 100644
--- a/tests/legacy/file_hjson.rs
+++ b/tests/legacy/file_hjson.rs
@@ -4,7 +4,6 @@ extern crate config;
extern crate float_cmp;
extern crate serde;
-use linked_hash_map::LinkedHashMap;
use std::path::PathBuf;
use self::config::*;
@@ -18,7 +17,7 @@ struct Place {
favorite: bool,
telephone: Option<String>,
reviews: u64,
- creator: LinkedHashMap<String, Value>,
+ creator: MapImpl<String, Value>,
rating: Option<f32>,
}