Skip to content

Commit a01138c

Browse files
committed
std: Unignore a test for #10663
This issue is long closed. It seems that unwrapping will always panic though.
1 parent d528aa9 commit a01138c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libstd/old_io/net/addrinfo.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,10 @@ mod test {
127127
assert!(found_local);
128128
}
129129

130-
#[ignore]
131130
#[test]
132131
fn issue_10663() {
133132
// Something should happen here, but this certainly shouldn't cause
134133
// everything to die. The actual outcome we don't care too much about.
135-
get_host_addresses("example.com").unwrap();
134+
let _ = get_host_addresses("example.com");
136135
}
137136
}

0 commit comments

Comments
 (0)