| Index: test/unittests/test-utils.h
|
| diff --git a/test/unittests/test-utils.h b/test/unittests/test-utils.h
|
| index d75c504ff96f5d6edadab9b37263715c6e33ca7e..ca7efc2a41c30d179a51b2824bdf784afa4046a2 100644
|
| --- a/test/unittests/test-utils.h
|
| +++ b/test/unittests/test-utils.h
|
| @@ -97,7 +97,7 @@ class TestWithIsolate : public virtual ::v8::TestWithIsolate {
|
|
|
| class TestWithZone : public virtual ::testing::Test {
|
| public:
|
| - TestWithZone() : zone_(&allocator_) {}
|
| + TestWithZone() : zone_(&allocator_, ZONE_NAME) {}
|
| virtual ~TestWithZone();
|
|
|
| Zone* zone() { return &zone_; }
|
| @@ -111,7 +111,7 @@ class TestWithZone : public virtual ::testing::Test {
|
|
|
| class TestWithIsolateAndZone : public virtual TestWithIsolate {
|
| public:
|
| - TestWithIsolateAndZone() : zone_(&allocator_) {}
|
| + TestWithIsolateAndZone() : zone_(&allocator_, ZONE_NAME) {}
|
| virtual ~TestWithIsolateAndZone();
|
|
|
| Zone* zone() { return &zone_; }
|
|
|