Index: test/cctest/test-api.cc |
diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc |
index 7ba4a3c4a923de2f38d9aa8d2453d880a26a8b92..81dc67d8e2aad73880402a4cd4d18d293682daf3 100644 |
--- a/test/cctest/test-api.cc |
+++ b/test/cctest/test-api.cc |
@@ -21932,18 +21932,3 @@ TEST(AccessCheckedIsConcatSpreadable) { |
ExpectTrue("result.length === 1"); |
ExpectTrue("object[Symbol.isConcatSpreadable] === undefined"); |
} |
- |
- |
-TEST(ArrayIteratorMethods) { |
- v8::Isolate* isolate = CcTest::isolate(); |
- v8::HandleScope scope(isolate); |
- LocalContext env; |
- |
- env->Global()->Set(v8_str("keys"), v8::Array::GetKeysIterator(isolate)); |
- env->Global()->Set(v8_str("values"), v8::Array::GetValuesIterator(isolate)); |
- env->Global()->Set(v8_str("entries"), v8::Array::GetEntriesIterator(isolate)); |
- |
- ExpectString("typeof keys", "function"); |
- ExpectString("typeof values", "function"); |
- ExpectString("typeof entries", "function"); |
-} |