Index: test/cctest/test-weaksets.cc |
diff --git a/test/cctest/test-weaksets.cc b/test/cctest/test-weaksets.cc |
index 53a5913c04fff64775ad206b4514e4bafbae9a1a..ec6945aec7596061eb10d14f4734d691179e48d8 100644 |
--- a/test/cctest/test-weaksets.cc |
+++ b/test/cctest/test-weaksets.cc |
@@ -31,7 +31,7 @@ |
#include "src/global-handles.h" |
#include "test/cctest/cctest.h" |
-#include "test/cctest/heap/utils-inl.h" |
+#include "test/cctest/heap/heap-utils.h" |
using namespace v8::internal; |
@@ -176,7 +176,7 @@ TEST(WeakSet_Regress2060a) { |
// Start second old-space page so that values land on evacuation candidate. |
Page* first_page = heap->old_space()->anchor()->next_page(); |
- SimulateFullSpace(heap->old_space()); |
+ heap::SimulateFullSpace(heap->old_space()); |
// Fill up weak set with values on an evacuation candidate. |
{ |
@@ -215,7 +215,7 @@ TEST(WeakSet_Regress2060b) { |
// Start second old-space page so that keys land on evacuation candidate. |
Page* first_page = heap->old_space()->anchor()->next_page(); |
- SimulateFullSpace(heap->old_space()); |
+ heap::SimulateFullSpace(heap->old_space()); |
// Fill up weak set with keys on an evacuation candidate. |
Handle<JSObject> keys[32]; |