Commit b52f3fe2 authored by 's avatar

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
parent c83adaa8
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment