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 654bec6 commit a32d296Copy full SHA for a32d296
test/lib/ipv4.test.ts
@@ -9,7 +9,7 @@ describe('parseFrom', () => {
9
it('255.255.255.255/32', () => {
10
expect(parseFrom('255.255.255.255/32')).toContain({
11
address: assemble([255, 255, 255, 255]),
12
- prefix: 32,
+ prefix: 31, // because currently it refuses 32 and strongly suggests 31 instead
13
});
14
15
0 commit comments