summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-url.parse-post.js
diff options
context:
space:
mode:
authorVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-04-28 04:06:42 +0300
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2017-05-05 17:39:05 +0300
commit8b76c3e60c7b5c274c757257580a2c0faae69097 (patch)
treea9f686995887dbeb0b5c5b23c5f3188987c99b2e /test/parallel/test-http-url.parse-post.js
parent6bcf65d4a788a73b3c3f27d75796609f948f7885 (diff)
downloadnode-new-8b76c3e60c7b5c274c757257580a2c0faae69097.tar.gz
test: reduce string concatenations
PR-URL: https://github.com/nodejs/node/pull/12735 Refs: https://github.com/nodejs/node/pull/12455 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'test/parallel/test-http-url.parse-post.js')
-rw-r--r--test/parallel/test-http-url.parse-post.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-url.parse-post.js b/test/parallel/test-http-url.parse-post.js
index fafcb620fe..dab2e8f97d 100644
--- a/test/parallel/test-http-url.parse-post.js
+++ b/test/parallel/test-http-url.parse-post.js
@@ -34,7 +34,7 @@ function check(request) {
assert.strictEqual(request.url, '/asdf?qwer=zxcv');
//the host header should use the url.parse.hostname
assert.strictEqual(request.headers.host,
- testURL.hostname + ':' + testURL.port);
+ `${testURL.hostname}:${testURL.port}`);
}
const server = http.createServer(function(request, response) {