Fixing test json::List -> json::Array

This commit is contained in:
Markus Kobler 2014-11-22 13:28:41 +00:00
parent d0519edd21
commit c7872d82fc

View file

@ -34,7 +34,7 @@ fn to_json(toml: Value) -> json::Json {
Some(&Table(..)) => true,
_ => false,
};
let json = json::List(arr.into_iter().map(to_json).collect());
let json = json::Array(arr.into_iter().map(to_json).collect());
if is_table {json} else {doit("array", json)}
}
Table(table) => json::Object(table.into_iter().map(|(k, v)| {