fix detest test failure

This commit is contained in:
Francis Cao 2026-01-28 09:26:07 -08:00
parent c5aa8be15c
commit 558cb3b041

View file

@ -18,5 +18,5 @@ test('getIpAddress: Standard header', () => {
});
test('getIpAddress: No header', () => {
expect(getIpAddress(new Headers())).toEqual(null);
expect(getIpAddress(new Headers())).toEqual(undefined);
});