mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
test,lib: align arguments in multiline calls
An upcoming custom lint rule will provide slightly more strict enforcement of argument alignment for multiline function calls. Adjust existing code to conform. PR-URL: https://github.com/nodejs/node/pull/8642 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
This commit is contained in:
parent
bc1ebd67d8
commit
4316f4df31
15 changed files with 139 additions and 132 deletions
|
@ -26,7 +26,7 @@ vals.forEach(function(t) {
|
|||
assert.strictEqual(t.constructor, T);
|
||||
assert.strictEqual(Object.getPrototypeOf(t), T.prototype);
|
||||
assert.strictEqual(Object.getPrototypeOf(Object.getPrototypeOf(t)),
|
||||
Buffer.prototype);
|
||||
Buffer.prototype);
|
||||
|
||||
t.fill(5);
|
||||
let cntr = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue