summaryrefslogtreecommitdiff
path: root/test/parallel/test-util-log.js
diff options
context:
space:
mode:
authorAli Ijaz Sheikh <ofrobots@google.com>2016-03-04 14:15:42 -0800
committerMichaƫl Zasso <targos@protonmail.com>2016-06-29 10:44:25 +0200
commit9940766f8a09c2eec06f582cbb0b4883f601be89 (patch)
treee3d83b0883e2aeae1751707c5cdc3522f4332b6a /test/parallel/test-util-log.js
parenta33909e1074c91c468ce75df3979c244b1f7cc0f (diff)
downloadandroid-node-v8-9940766f8a09c2eec06f582cbb0b4883f601be89.tar.gz
android-node-v8-9940766f8a09c2eec06f582cbb0b4883f601be89.tar.bz2
android-node-v8-9940766f8a09c2eec06f582cbb0b4883f601be89.zip
test: fix tests after V8 upgrade
* Changes to messages. * V8 enabled proxy support by default. The --harmony_proxies flag is now gone. PR-URL: https://github.com/nodejs/node/pull/6482 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'test/parallel/test-util-log.js')
-rw-r--r--test/parallel/test-util-log.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-util-log.js b/test/parallel/test-util-log.js
index b9e3d9ce35..91f77d994d 100644
--- a/test/parallel/test-util-log.js
+++ b/test/parallel/test-util-log.js
@@ -19,7 +19,7 @@ var tests = [
{input: null, output: 'null'},
{input: false, output: 'false'},
{input: 42, output: '42'},
- {input: function() {}, output: '[Function]'},
+ {input: function() {}, output: '[Function: input]'},
{input: parseInt('not a number', 10), output: 'NaN'},
{input: {answer: 42}, output: '{ answer: 42 }'},
{input: [1, 2, 3], output: '[ 1, 2, 3 ]'}