s/ASSERT_EQ/CHECK_EQ/ .
author <shinichiro.hamaji@gmail.com> <>
Tue, 15 Jun 2010 04:45:46 +0000 (04:45 +0000)
committer <shinichiro.hamaji@gmail.com> <>
Tue, 15 Jun 2010 04:45:46 +0000 (04:45 +0000)
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

src/logging_unittest.cc

index 427afe5..fb058e7 100644 (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() {