summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-invalidheaderfield.js
diff options
context:
space:
mode:
authorSebastiaan Deckers <sebdeckers83@gmail.com>2017-07-10 20:55:21 -0400
committerRefael Ackermann <refack@gmail.com>2017-07-21 15:13:47 -0400
commitbb294059040def8e8c0b1719cc17f6537ab5cb39 (patch)
treeacc6b7bcf88da8e6078fa5ab91f6718289f32bbf /test/parallel/test-http-invalidheaderfield.js
parent4f875222445b07016a8294fa5a5bf7418c735489 (diff)
downloadandroid-node-v8-bb294059040def8e8c0b1719cc17f6537ab5cb39.tar.gz
android-node-v8-bb294059040def8e8c0b1719cc17f6537ab5cb39.tar.bz2
android-node-v8-bb294059040def8e8c0b1719cc17f6537ab5cb39.zip
lib,src: fix consistent spacing inside braces
PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-http-invalidheaderfield.js')
-rw-r--r--test/parallel/test-http-invalidheaderfield.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-http-invalidheaderfield.js b/test/parallel/test-http-invalidheaderfield.js
index 21be4c4d6d..9e844e8a42 100644
--- a/test/parallel/test-http-invalidheaderfield.js
+++ b/test/parallel/test-http-invalidheaderfield.js
@@ -19,7 +19,7 @@ const server = http.createServer(function(req, res) {
});
server.listen(0, function() {
- http.get({port: this.address().port}, function() {
+ http.get({ port: this.address().port }, function() {
ee.emit('done');
});
@@ -27,7 +27,7 @@ server.listen(0, function() {
function() {
const options = {
port: server.address().port,
- headers: {'testing 123': 123}
+ headers: { 'testing 123': 123 }
};
http.get(options, common.mustNotCall());
},
@@ -41,7 +41,7 @@ server.listen(0, function() {
function() {
const options = {
port: server.address().port,
- headers: {'testing_123': 123}
+ headers: { 'testing_123': 123 }
};
http.get(options, function() {
ee.emit('done');