Skip to content

Commit 2dce58d

Browse files
committed
Fix SocketAddrV6: Display tests
1 parent 2f2c3f5 commit 2dce58d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/tests/net/socket_addr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn ipv6_socket_addr_to_string() {
3434
// IPv4-compatible address.
3535
assert_eq!(
3636
SocketAddrV6::new(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0xc000, 0x280), 8080, 0, 0).to_string(),
37-
"[::192.0.2.128]:8080"
37+
"[::c000:280]:8080"
3838
);
3939

4040
// IPv6 address with no zero segments.

library/std/src/net/socket_addr/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ fn ipv6_socket_addr_to_string() {
8585
// IPv4-compatible address.
8686
assert_eq!(
8787
SocketAddrV6::new(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0xc000, 0x280), 8080, 0, 0).to_string(),
88-
"[::192.0.2.128]:8080"
88+
"[::c000:280]:8080"
8989
);
9090

9191
// IPv6 address with no zero segments.

0 commit comments

Comments
 (0)