update tests

This commit is contained in:
Randall Schmidt
2021-06-11 15:52:15 -04:00
parent 7f2dba84a3
commit 2f5409c25c
3 changed files with 76 additions and 24 deletions

View File

@ -18,7 +18,7 @@ class Headers {
}
get(name) {
return (this.rawHeaders[name.toLowerCase()] || [])[0];
return (this.rawHeaders[name.toLowerCase()] || [])[0] || null;
}
has(name) {