Skip to content

Commit 0707a13

Browse files
committed
Fix
1 parent 89f571e commit 0707a13

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/test/java/com/thealgorithms/conversions/IPv6ConverterTest.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,17 @@ public class IPv6ConverterTest {
1212
+ "0."
1313
+ "2."
1414
+ "128";
15-
private static final String EXPECTED_IPV6_MAPPED = ":"+":ff"+"ff"
16-
+ ":19"+"2."+"0."
15+
private static final String EXPECTED_IPV6_MAPPED = ":"
16+
+ ":ff"
17+
+ "ff"
18+
+ ":19"
19+
+ "2."
20+
+ "0."
1721
+ "2.128";
1822
private static final String INVALID_IPV6_MAPPED = "2001:"
19-
+ "db8"+":"+":1";
23+
+ "db8"
24+
+ ":"
25+
+ ":1";
2026
private static final String INVALID_IPV4 = "999."
2127
+ "999."
2228
+ "999."

0 commit comments

Comments
 (0)