test: use consistent block spacing

In preparation for enabling an ESLint rule, use consistent block
spacing. This changes only six files in the code base as block spacing
is consistent throughout the rest of the code base.

Before:  function(c) {data += c;}

After: function(c) { data += c; }

PR-URL: https://github.com/nodejs/node/pull/10377
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Julian Duque <julianduquej@gmail.com>
This commit is contained in:
Rich Trott 2016-12-20 21:54:04 -08:00 committed by Julian Duque
parent b73402d97a
commit ece3e37cfa
No known key found for this signature in database
GPG Key ID: D2F1394777BDB2E2
6 changed files with 23 additions and 23 deletions