Skip to content

Commit cbbfd66

Browse files
committed
Upgrade to rustc 0b48001c2 2014-11-07.
1 parent 5370f85 commit cbbfd66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ fn stylesheet_from_bytes() {
192192
});
193193

194194
fn get_string<'a>(map: &'a json::JsonObject, key: &String) -> Option<&'a str> {
195-
match map.find(key) {
195+
match map.get(key) {
196196
Some(&json::String(ref s)) => Some(s.as_slice()),
197197
Some(&json::Null) => None,
198198
None => None,

0 commit comments

Comments
 (0)