Skip to content

Commit b169dc3

Browse files
committed
Fix
1 parent a20c86e commit b169dc3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/src/network/ip_validator_test.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ void main() {
3232
const List<String> validIPv6s = <String>[
3333
'::1',
3434
'2001:0db8:85a3:0000:0000:8a2e:0370:7334',
35-
'2001:0db8:85a3:0000:0000:8a2e:0370',
36-
'2001::85a3::8a2e:0370:7334',
37-
'2001:db8::85a3::8a2e:370:7334',
35+
'2001:db8:85a3:0:0:8a2e:370:7334',
36+
'2001:db8:85a3::8a2e:370:7334',
3837
];
3938

4039
// Act & Assert

0 commit comments

Comments
 (0)