core: Fix typos in ignore attrs

This commit is contained in:
Brian Anderson
2012-05-21 21:30:26 -07:00
parent 2fa5a66310
commit c492a183d7

View File

@@ -284,7 +284,7 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(target_os = "win3"))]
#[ignore(cfg(target_os = "win32"))]
fn gen_int_from_fail() {
rand::rng().gen_int_range(5, -2);
}
@@ -300,7 +300,7 @@ mod tests {
#[test]
#[should_fail]
#[ignore(cfg(target_os = "win3"))]
#[ignore(cfg(target_os = "win32"))]
fn gen_uint_range_fail() {
rand::rng().gen_uint_range(5u, 2u);
}