Browse Source

test: replace concatenation with template literal

PR-URL: https://github.com/nodejs/node/pull/14284
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
v6
Ching Hsu 8 years ago
committed by Rich Trott
parent
commit
66a6a15561
  1. 7
      test/parallel/test-http-upgrade-client2.js

7
test/parallel/test-http-upgrade-client2.js

@ -27,9 +27,10 @@ const CRLF = '\r\n';
const server = http.createServer();
server.on('upgrade', function(req, socket, head) {
socket.write('HTTP/1.1 101 Ok' + CRLF +
'Connection: Upgrade' + CRLF +
'Upgrade: Test' + CRLF + CRLF + 'head');
socket.write(`HTTP/1.1 101 Ok${CRLF}` +
`Connection: Upgrade${CRLF}` +
`Upgrade: Test${CRLF}${CRLF}` +
'head');
socket.on('end', function() {
socket.end();
});

Loading…
Cancel
Save