summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-outgoing-internal-headers.js
diff options
context:
space:
mode:
authorMorgan Roderick <morgan@roderick.dk>2018-11-06 15:24:26 +0000
committerRich Trott <rtrott@gmail.com>2018-11-22 04:45:27 -0800
commit91748dd89c652939d52f38b94afe9eae4eb8fd5d (patch)
treef9e073cd648c5b969423ac753fce1a4215fd9701 /test/parallel/test-http-outgoing-internal-headers.js
parent070995d5866beb31ee2b64ece90b883674a95b40 (diff)
downloadnode-new-91748dd89c652939d52f38b94afe9eae4eb8fd5d.tar.gz
http: change DEP0066 to a runtime deprecation
Change doc-only deprecation for _headers and _headerNames accessors to a runtime deprecation. PR-URL: https://github.com/nodejs/node/pull/24167 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Diffstat (limited to 'test/parallel/test-http-outgoing-internal-headers.js')
-rw-r--r--test/parallel/test-http-outgoing-internal-headers.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/parallel/test-http-outgoing-internal-headers.js b/test/parallel/test-http-outgoing-internal-headers.js
index de75a44e8a..2cebfe9e2b 100644
--- a/test/parallel/test-http-outgoing-internal-headers.js
+++ b/test/parallel/test-http-outgoing-internal-headers.js
@@ -6,6 +6,9 @@ const assert = require('assert');
const { outHeadersKey } = require('internal/http');
const { OutgoingMessage } = require('http');
+const warn = 'OutgoingMessage.prototype._headers is deprecated';
+common.expectWarning('DeprecationWarning', warn, 'DEP0066');
+
{
// tests for _headers get method
const outgoingMessage = new OutgoingMessage();