summaryrefslogtreecommitdiff
path: root/test/sequential/test-vm-timeout-rethrow.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-15 21:21:12 -0700
committerJames M Snell <jasnell@gmail.com>2016-04-18 17:19:11 -0700
commit31600735f40e02935b936802ff42d66d49e9769b (patch)
tree29093a1796aad2d127cf514dbe3202423c82ac43 /test/sequential/test-vm-timeout-rethrow.js
parentc1d82ac2ff15594840e2a1b9531b506ae067ed27 (diff)
downloadandroid-node-v8-31600735f40e02935b936802ff42d66d49e9769b.tar.gz
android-node-v8-31600735f40e02935b936802ff42d66d49e9769b.tar.bz2
android-node-v8-31600735f40e02935b936802ff42d66d49e9769b.zip
lib,test,tools: alignment on variable assignments
Correct alignment on variable assignments that span multiple lines in preparation for lint rule to enforce such alignment. PR-URL: https://github.com/nodejs/node/pull/6242 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/sequential/test-vm-timeout-rethrow.js')
-rw-r--r--test/sequential/test-vm-timeout-rethrow.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sequential/test-vm-timeout-rethrow.js b/test/sequential/test-vm-timeout-rethrow.js
index dd513b5a69..f0f9c0b9c5 100644
--- a/test/sequential/test-vm-timeout-rethrow.js
+++ b/test/sequential/test-vm-timeout-rethrow.js
@@ -6,8 +6,8 @@ var spawn = require('child_process').spawn;
if (process.argv[2] === 'child') {
var code = 'var j = 0;\n' +
- 'for (var i = 0; i < 1000000; i++) j += add(i, i + 1);\n' +
- 'j;';
+ 'for (var i = 0; i < 1000000; i++) j += add(i, i + 1);\n' +
+ 'j;';
var ctx = vm.createContext({
add: function(x, y) {