remove the debug checks
This commit is contained in:
parent
2dcccf22a3
commit
40ea8a267f
|
|
@ -23,8 +23,8 @@ test('parse ip address', () => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let to_Str = ipBytes == null ? '0' : util.ipToString(ipBytes, true);
|
let to_Str = util.ipToString(ipBytes, true);
|
||||||
let toByte = ipBytes == null ? '0' : util.ipBytesString(ipBytes);
|
let toByte = util.ipBytesString(ipBytes);
|
||||||
console.log(`parseIP(${ipString}): {Bytes: ${toByte}, String: ${to_Str}}`);
|
console.log(`parseIP(${ipString}): {Bytes: ${toByte}, String: ${to_Str}}`);
|
||||||
expect(ipString).toBe(to_Str);
|
expect(ipString).toBe(to_Str);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue