| Index: test/cctest/test-decls.cc
|
| ===================================================================
|
| --- test/cctest/test-decls.cc (revision 1783)
|
| +++ test/cctest/test-decls.cc (working copy)
|
| @@ -389,7 +389,7 @@
|
| state_ = UNKNOWN;
|
| return True();
|
| default:
|
| - ASSERT(state_ == UNKNOWN);
|
| + CHECK(state_ == UNKNOWN);
|
| break;
|
| }
|
| // Do the lookup in the object.
|
| @@ -479,7 +479,7 @@
|
| state_ = UNKNOWN;
|
| return False();
|
| default:
|
| - ASSERT(state_ == UNKNOWN);
|
| + CHECK(state_ == UNKNOWN);
|
| break;
|
| }
|
| // Do the lookup in the object.
|
|
|