aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-default-headers-exist.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-client-default-headers-exist.js')
-rw-r--r--test/parallel/test-http-client-default-headers-exist.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/parallel/test-http-client-default-headers-exist.js b/test/parallel/test-http-client-default-headers-exist.js
index e0cf82e462..ba4d4fa660 100644
--- a/test/parallel/test-http-client-default-headers-exist.js
+++ b/test/parallel/test-http-client-default-headers-exist.js
@@ -31,7 +31,8 @@ const expectedHeaders = {
'HEAD': ['host', 'connection'],
'OPTIONS': ['host', 'connection'],
'POST': ['host', 'connection', 'content-length'],
- 'PUT': ['host', 'connection', 'content-length']
+ 'PUT': ['host', 'connection', 'content-length'],
+ 'TRACE': ['host', 'connection']
};
const expectedMethods = Object.keys(expectedHeaders);