summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Ijaz Sheikh <ofrobots@google.com>2015-08-23 07:24:54 -0700
committerRod Vagg <rod@vagg.org>2015-09-06 21:38:05 +1000
commitd571680638dc45715994ec54d6bf5aa28e311eb8 (patch)
tree54a61772ef689580d0f1dcd09886d018ab415c46
parent56db28b6d734dc397459f5cfee51cb41b370c30b (diff)
downloadandroid-node-v8-d571680638dc45715994ec54d6bf5aa28e311eb8.tar.gz
android-node-v8-d571680638dc45715994ec54d6bf5aa28e311eb8.tar.bz2
android-node-v8-d571680638dc45715994ec54d6bf5aa28e311eb8.zip
test: fix test-repl-tab-complete.js for V8 4.5
The list of Array properties needed to be updated to match the new ones added in V8 4.5. PR-URL: https://github.com/nodejs/node/pull/2509 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
-rw-r--r--test/parallel/test-repl-tab-complete.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/parallel/test-repl-tab-complete.js b/test/parallel/test-repl-tab-complete.js
index 60fb48bb76..1cb6e7791d 100644
--- a/test/parallel/test-repl-tab-complete.js
+++ b/test/parallel/test-repl-tab-complete.js
@@ -265,9 +265,13 @@ var array_elements = [ [
'ary.valueOf',
'',
'ary.concat',
+ 'ary.copyWithin',
'ary.entries',
'ary.every',
+ 'ary.fill',
'ary.filter',
+ 'ary.find',
+ 'ary.findIndex',
'ary.forEach',
'ary.indexOf',
'ary.join',