summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/history/in_memory_url_index_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/history/in_memory_url_index_unittest.cc b/chrome/browser/history/in_memory_url_index_unittest.cc
index 8796cc2..4be8c07 100644
--- a/chrome/browser/history/in_memory_url_index_unittest.cc
+++ b/chrome/browser/history/in_memory_url_index_unittest.cc
@@ -314,7 +314,7 @@ void InMemoryURLIndexTest::ExpectPrivateDataEqual(
expected_info != expected.history_info_map_.end(); ++expected_info) {
HistoryInfoMap::const_iterator actual_info =
actual.history_info_map_.find(expected_info->first);
- ASSERT_NE(actual_info, actual.history_info_map_.end());
+ ASSERT_TRUE(actual_info != actual.history_info_map_.end());
const URLRow& expected_row(expected_info->second);
const URLRow& actual_row(actual_info->second);
EXPECT_EQ(expected_row.visit_count(), actual_row.visit_count());
@@ -329,7 +329,7 @@ void InMemoryURLIndexTest::ExpectPrivateDataEqual(
++expected_starts) {
WordStartsMap::const_iterator actual_starts =
actual.word_starts_map_.find(expected_starts->first);
- ASSERT_NE(actual_starts, actual.word_starts_map_.end());
+ ASSERT_TRUE(actual_starts != actual.word_starts_map_.end());
const RowWordStarts& expected_word_starts(expected_starts->second);
const RowWordStarts& actual_word_starts(actual_starts->second);
EXPECT_EQ(expected_word_starts.url_word_starts_.size(),