http2: fix DEP0194 message · nodejs/node@b11da11 · GitHub
Skip to content

Commit b11da11

Browse files
climba03003targos
authored andcommitted
http2: fix DEP0194 message
PR-URL: #58669 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent b1f60d2 commit b11da11

6 files changed

Lines changed: 7 additions & 7 deletions

lib/internal/http2/core.js

Lines changed: 2 additions & 2 deletions

test/parallel/test-http2-client-priority-before-connect.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const h2 = require('http2');
77

88
common.expectWarning(
99
'DeprecationWarning',
10-
'http2Stream.priority is longer supported after priority signalling was deprecated in RFC 1993',
10+
'http2Stream.priority is longer supported after priority signalling was deprecated in RFC 9113',
1111
'DEP0194');
1212

1313
const server = h2.createServer();

test/parallel/test-http2-client-set-priority.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const http2 = require('http2');
88

99
common.expectWarning(
1010
'DeprecationWarning',
11-
'Priority signaling has been deprecated as of RFC 1993.',
11+
'Priority signaling has been deprecated as of RFC 9113.',
1212
'DEP0194');
1313

1414
const checkWeight = (actual, expect) => {

test/parallel/test-http2-priority-cycle-.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Countdown = require('../common/countdown');
99

1010
common.expectWarning(
1111
'DeprecationWarning',
12-
'http2Stream.priority is longer supported after priority signalling was deprecated in RFC 1993',
12+
'http2Stream.priority is longer supported after priority signalling was deprecated in RFC 9113',
1313
'DEP0194');
1414

1515
const server = http2.createServer();

test/parallel/test-http2-priority-event.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const h2 = require('http2');
77

88
common.expectWarning(
99
'DeprecationWarning',
10-
'http2Stream.priority is longer supported after priority signalling was deprecated in RFC 1993',
10+
'http2Stream.priority is longer supported after priority signalling was deprecated in RFC 9113',
1111
'DEP0194');
1212

1313
const server = h2.createServer();

test/parallel/test-http2-server-stream-session-destroy.js

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)