diff options
Diffstat (limited to 'test/parallel/test-http-url.parse-auth-with-header-in-request.js')
-rw-r--r-- | test/parallel/test-http-url.parse-auth-with-header-in-request.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-url.parse-auth-with-header-in-request.js b/test/parallel/test-http-url.parse-auth-with-header-in-request.js index c10f5ed7b0..eb96ac19c1 100644 --- a/test/parallel/test-http-url.parse-auth-with-header-in-request.js +++ b/test/parallel/test-http-url.parse-auth-with-header-in-request.js @@ -41,7 +41,7 @@ const server = http.createServer(function(request, response) { server.listen(0, function() { const testURL = url.parse(`http://asdf:qwer@localhost:${this.address().port}`); - // the test here is if you set a specific authorization header in the + // The test here is if you set a specific authorization header in the // request we should not override that with basic auth testURL.headers = { Authorization: 'NoAuthForYOU' |