From b52f3fe2e44b1889be867d37d6ee285b24a91736 Mon Sep 17 00:00:00 2001 From: Date: Tue, 15 Jun 2010 04:45:46 +0000 Subject: [PATCH] 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 --- src/logging_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging_unittest.cc b/src/logging_unittest.cc index 427afe5..fb058e7 100644 --- a/src/logging_unittest.cc +++ b/src/logging_unittest.cc @@ -559,7 +559,7 @@ void TestDCHECK() { auto_ptr sptr(new int64); int64* ptr = DCHECK_NOTNULL(sptr.get()); - ASSERT_EQ(ptr, sptr.get()); + CHECK_EQ(ptr, sptr.get()); } void TestSTREQ() { -- 2.7.4