fix(rustup): update to rust beta

This commit is contained in:
Sean McArthur
2015-04-02 12:32:46 -07:00
parent b4aeeb347c
commit 0f5858f379
12 changed files with 79 additions and 74 deletions

View File

@@ -129,9 +129,9 @@ mod tests {
#[test]
fn test_from_str() {
assert_eq!(Ok(Get), FromStr::from_str("GET"));
assert_eq!(Ok(Extension("MOVE".to_string())),
FromStr::from_str("MOVE"));
assert_eq!(Get, FromStr::from_str("GET").unwrap());
assert_eq!(Extension("MOVE".to_string()),
FromStr::from_str("MOVE").unwrap());
}
#[test]