| Index: test/unittests/test-isolate.cc
|
| diff --git a/test/unittests/test-isolate.cc b/test/unittests/test-isolate.cc
|
| index 70f0ad9fd8b219434c886829a8dcd23ff35d47ff..8d93ff72ff6a605bb1711749797a14cbf00efea7 100644
|
| --- a/test/unittests/test-isolate.cc
|
| +++ b/test/unittests/test-isolate.cc
|
| @@ -11,13 +11,13 @@ namespace v8 {
|
| namespace internal {
|
|
|
| IsolateTest::IsolateTest() : isolate_(v8::Isolate::New()) {
|
| - ASSERT_THAT(isolate_, NotNull());
|
| + EXPECT_THAT(isolate_, NotNull());
|
| isolate_->Enter();
|
| }
|
|
|
|
|
| IsolateTest::~IsolateTest() {
|
| - ASSERT_THAT(isolate_, NotNull());
|
| + EXPECT_THAT(isolate_, NotNull());
|
| isolate_->Exit();
|
| isolate_->Dispose();
|
| isolate_ = NULL;
|
|
|