| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent cd3305a commit 660a97b
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -341,8 +341,8 @@ static void at_exit_js(void* arg) { | |||
| 341 | 341 | v8::Isolate* isolate = static_cast<v8::Isolate*>(arg); | |
| 342 | 342 | v8::HandleScope handle_scope(isolate); | |
| 343 | 343 | v8::Local<v8::Object> obj = v8::Object::New(isolate); | |
| 344 | - assert(!obj.IsEmpty()); // Assert VM is still alive. | ||
| 345 | - assert(obj->IsObject()); | ||
| 344 | + EXPECT_FALSE(obj.IsEmpty()); // Assert VM is still alive. | ||
| 345 | + EXPECT_TRUE(obj->IsObject()); | ||
| 346 | 346 | called_at_exit_js = true; | |
| 347 | 347 | } | |
| 348 | 348 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments