Follow rustc: New destructor semantics

This commit is contained in:
Thomas Bahn 2015-02-06 21:10:58 +01:00
parent 03820f3d78
commit 70e8556e07

View File

@ -1266,8 +1266,8 @@ mod tests {
#[test]
fn test_as_object() {
let json_value: Value = from_str("{}").unwrap();
let json_object = json_value.as_object();
let map = BTreeMap::<string::String, Value>::new();
let json_object = json_value.as_object();
assert_eq!(json_object, Some(&map));
}