Unhide IpPrefix(InetAddress, int) am: a5a1b80222

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Connectivity/+/1831813

Change-Id: I0f0cfe71d555249e08e4a3946295fd028864c323
This commit is contained in:
Taras Antoshchuk
2021-12-16 11:34:50 +00:00
committed by Automerger Merge Worker
4 changed files with 4 additions and 3 deletions

View File

@@ -122,6 +122,9 @@ public class IpPrefixTest {
p = new IpPrefix("[2001:db8::123]/64");
assertEquals("2001:db8::/64", p.toString());
p = new IpPrefix(InetAddresses.parseNumericAddress("::128"), 64);
assertEquals("::/64", p.toString());
}
@Test