We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f571e commit 0707a13Copy full SHA for 0707a13
src/test/java/com/thealgorithms/conversions/IPv6ConverterTest.java
@@ -12,11 +12,17 @@ public class IPv6ConverterTest {
12
+ "0."
13
+ "2."
14
+ "128";
15
- private static final String EXPECTED_IPV6_MAPPED = ":"+":ff"+"ff"
16
- + ":19"+"2."+"0."
+ private static final String EXPECTED_IPV6_MAPPED = ":"
+ + ":ff"
17
+ + "ff"
18
+ + ":19"
19
+ + "2."
20
+ + "0."
21
+ "2.128";
22
private static final String INVALID_IPV6_MAPPED = "2001:"
- + "db8"+":"+":1";
23
+ + "db8"
24
+ + ":"
25
+ + ":1";
26
private static final String INVALID_IPV4 = "999."
27
+ "999."
28
0 commit comments