Skip to content

Commit e550b83

Browse files
committed
[v6.d REVIEW] Use more future-safe test values for family
Orig: a14cb3d8a
1 parent f3321b2 commit e550b83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S32-io/socket-fail-invalid-values.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use Test;
44

55
constant HOST = 'localhost';
66

7-
constant FAMILY_VALUE_TOO_LOW = 1;
8-
constant FAMILY_VALUE_TOO_HIGH = 4;
7+
constant FAMILY_VALUE_TOO_LOW = -1;
8+
constant FAMILY_VALUE_TOO_HIGH = 9999999;
99

1010
constant PORT_VALUE_VALID = 5018;
1111
constant PORT_VALUE_TOO_LOW = -1;

0 commit comments

Comments
 (0)