From f146f686b72ed311d326808519b522690b07555d Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Sun, 23 Aug 2015 07:24:54 -0700 Subject: [PATCH] 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 --- test/parallel/test-repl-tab-complete.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/parallel/test-repl-tab-complete.js b/test/parallel/test-repl-tab-complete.js index 60fb48b..1cb6e77 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', -- 2.7.4