| Index: chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc
|
| index 2d9308c78962cb3cf92e15d81fcc6e82545ece9d..89b84b484edae2e277cf4ff5526949f4d727d68b 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util_unittest.cc
|
| @@ -40,7 +40,8 @@ void VerifyNotExist(const std::string& key, leveldb::DB* db) {
|
|
|
| itr->Seek(key);
|
| EXPECT_TRUE(!itr->Valid() ||
|
| - !base::StartsWithASCII(itr->key().ToString(), key, true));
|
| + !base::StartsWith(itr->key().ToString(), key,
|
| + base::CompareCase::SENSITIVE));
|
| }
|
|
|
| } // namespace
|
|
|