Update serde2 to rust HEAD

This commit is contained in:
Erick Tryzelaar
2014-12-13 16:58:31 -08:00
parent 246396fdb4
commit c75f5caf8f
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -638,8 +638,8 @@ mod tests {
("\"\\n\"", "\n".to_string()),
("\"\\r\"", "\r".to_string()),
("\"\\t\"", "\t".to_string()),
("\"\\u12ab\"", "\u12ab".to_string()),
("\"\\uAB12\"", "\uAB12".to_string()),
("\"\\u12ab\"", "\u{12ab}".to_string()),
("\"\\uAB12\"", "\u{AB12}".to_string()),
]);
}