| Index: components/history/core/browser/thumbnail_database_unittest.cc
|
| diff --git a/components/history/core/browser/thumbnail_database_unittest.cc b/components/history/core/browser/thumbnail_database_unittest.cc
|
| index 61873b37978cd52e7c3b582e8faf24e10536ffed..b20bbaf3f78998b31d4eba3fa3a6b3ae2d96df74 100644
|
| --- a/components/history/core/browser/thumbnail_database_unittest.cc
|
| +++ b/components/history/core/browser/thumbnail_database_unittest.cc
|
| @@ -636,34 +636,8 @@ TEST_F(ThumbnailDatabaseTest, Version6) {
|
| ASSERT_TRUE(db.get() != NULL);
|
| VerifyTablesAndColumns(&db->db_);
|
|
|
| - EXPECT_TRUE(CheckPageHasIcon(db.get(),
|
| - kPageUrl1,
|
| - favicon_base::FAVICON,
|
| - kIconUrl1,
|
| - kLargeSize,
|
| - sizeof(kBlob1),
|
| - kBlob1));
|
| - EXPECT_TRUE(CheckPageHasIcon(db.get(),
|
| - kPageUrl2,
|
| - favicon_base::FAVICON,
|
| - kIconUrl2,
|
| - kLargeSize,
|
| - sizeof(kBlob2),
|
| - kBlob2));
|
| - EXPECT_TRUE(CheckPageHasIcon(db.get(),
|
| - kPageUrl3,
|
| - favicon_base::FAVICON,
|
| - kIconUrl1,
|
| - kLargeSize,
|
| - sizeof(kBlob1),
|
| - kBlob1));
|
| - EXPECT_TRUE(CheckPageHasIcon(db.get(),
|
| - kPageUrl3,
|
| - favicon_base::TOUCH_ICON,
|
| - kIconUrl3,
|
| - kLargeSize,
|
| - sizeof(kBlob2),
|
| - kBlob2));
|
| + // Version 6 is deprecated, the data should all be gone.
|
| + VerifyDatabaseEmpty(&db->db_);
|
| }
|
|
|
| // Test loading version 7 database.
|
|
|