s/ASSERT_EQ/CHECK_EQ/ .

We are not using gtests' ASSERT_* in our unittests.


git-svn-id: https://google-glog.googlecode.com/svn/trunk@87 eb4d4688-79bd-11dd-afb4-1d65580434c0
This commit is contained in:
2010-06-15 04:45:46 +00:00
parent c83adaa87d
commit b52f3fe2e4

View File

@ -559,7 +559,7 @@ void TestDCHECK() {
auto_ptr<int64> sptr(new int64);
int64* ptr = DCHECK_NOTNULL(sptr.get());
ASSERT_EQ(ptr, sptr.get());
CHECK_EQ(ptr, sptr.get());
}
void TestSTREQ() {