| Index: test/cctest/test-spaces.cc
|
| diff --git a/test/cctest/test-spaces.cc b/test/cctest/test-spaces.cc
|
| index 2ca0ee3e8b3ef3e271ee861812308870aa80c8d9..051af2f2f96cbae7b1670864568f2769e679d29d 100644
|
| --- a/test/cctest/test-spaces.cc
|
| +++ b/test/cctest/test-spaces.cc
|
| @@ -158,8 +158,8 @@ TEST(MemoryAllocator) {
|
| TEST(NewSpace) {
|
| OS::Setup();
|
| CHECK(HEAP->ConfigureHeapDefault());
|
| - CHECK(Isolate::Current()->memory_allocator()->Setup(HEAP->MaxReserved(),
|
| - HEAP->MaxExecutableSize()));
|
| + CHECK(Isolate::Current()->memory_allocator()->Setup(
|
| + HEAP->MaxReserved(), HEAP->MaxExecutableSize()));
|
|
|
| NewSpace new_space(HEAP);
|
|
|
| @@ -186,8 +186,8 @@ TEST(NewSpace) {
|
| TEST(OldSpace) {
|
| OS::Setup();
|
| CHECK(HEAP->ConfigureHeapDefault());
|
| - CHECK(Isolate::Current()->memory_allocator()->Setup(HEAP->MaxReserved(),
|
| - HEAP->MaxExecutableSize()));
|
| + CHECK(Isolate::Current()->memory_allocator()->Setup(
|
| + HEAP->MaxReserved(), HEAP->MaxExecutableSize()));
|
|
|
| OldSpace* s = new OldSpace(HEAP,
|
| HEAP->MaxOldGenerationSize(),
|
|
|