Skip to content

Commit a32d296

Browse files
committed
Fix ipv4.test.ts
1 parent 654bec6 commit a32d296

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lib/ipv4.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('parseFrom', () => {
99
it('255.255.255.255/32', () => {
1010
expect(parseFrom('255.255.255.255/32')).toContain({
1111
address: assemble([255, 255, 255, 255]),
12-
prefix: 32,
12+
prefix: 31, // because currently it refuses 32 and strongly suggests 31 instead
1313
});
1414
});
1515

0 commit comments

Comments
 (0)