std: Unignore a test for #10663

This issue is long closed. It seems that unwrapping will always panic
though.
This commit is contained in:
Richo Healey 2015-03-28 20:14:43 -07:00
parent d528aa9960
commit a01138cb4f

View File

@ -127,11 +127,10 @@ mod test {
assert!(found_local);
}
#[ignore]
#[test]
fn issue_10663() {
// Something should happen here, but this certainly shouldn't cause
// everything to die. The actual outcome we don't care too much about.
get_host_addresses("example.com").unwrap();
let _ = get_host_addresses("example.com");
}
}