Index: test/cctest/test-dictionary.cc |
diff --git a/test/cctest/test-dictionary.cc b/test/cctest/test-dictionary.cc |
index 14e5d69d43714bba76b9e66a6c96026590f60b88..df197ff9457eca871eab7c30db77e9b4eca1a19c 100644 |
--- a/test/cctest/test-dictionary.cc |
+++ b/test/cctest/test-dictionary.cc |
@@ -182,7 +182,7 @@ static void TestHashSetCausesGC(Handle<HashSet> table) { |
// Simulate a full heap so that generating an identity hash code |
// in subsequent calls will request GC. |
SimulateFullSpace(CcTest::heap()->new_space()); |
- SimulateFullSpace(CcTest::heap()->old_pointer_space()); |
+ SimulateFullSpace(CcTest::heap()->old_space()); |
// Calling Contains() should not cause GC ever. |
int gc_count = isolate->heap()->gc_count(); |
@@ -228,7 +228,7 @@ static void TestHashMapCausesGC(Handle<HashMap> table) { |
// Simulate a full heap so that generating an identity hash code |
// in subsequent calls will request GC. |
SimulateFullSpace(CcTest::heap()->new_space()); |
- SimulateFullSpace(CcTest::heap()->old_pointer_space()); |
+ SimulateFullSpace(CcTest::heap()->old_space()); |
// Calling Lookup() should not cause GC ever. |
CHECK(table->Lookup(key)->IsTheHole()); |