summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/object-observe.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/harmony/object-observe.js')
-rw-r--r--deps/v8/test/mjsunit/harmony/object-observe.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/deps/v8/test/mjsunit/harmony/object-observe.js b/deps/v8/test/mjsunit/harmony/object-observe.js
index 06254ee6d8..830eb1b09a 100644
--- a/deps/v8/test/mjsunit/harmony/object-observe.js
+++ b/deps/v8/test/mjsunit/harmony/object-observe.js
@@ -646,9 +646,8 @@ function recursiveObserver2(r) {
Object.observe(obj1, recursiveObserver2);
Object.observe(obj2, recursiveObserver2);
++obj1.a;
-// TODO(verwaest): Disabled because of bug 2774.
-// Object.deliverChangeRecords(recursiveObserver2);
-// assertEquals(199, recordCount);
+Object.deliverChangeRecords(recursiveObserver2);
+assertEquals(199, recordCount);
// Observing named properties.