Reviewers: jochen,
Message:
Committed patchset #1 manually as 22848 (tree was closed).
Description:
Fix build.
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=22848
Please review this at https://codereview.chromium.org/442603004/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+2, -2 lines):
M test/unittests/test-isolate.cc
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;
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.