diff options
Diffstat (limited to 'base/path_service_unittest.cc')
-rw-r--r-- | base/path_service_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/path_service_unittest.cc b/base/path_service_unittest.cc index 26998de..c65f7a5 100644 --- a/base/path_service_unittest.cc +++ b/base/path_service_unittest.cc @@ -22,9 +22,9 @@ bool ReturnsValidPath(int dir_type) { FilePath path; bool result = PathService::Get(dir_type, &path); #if defined(OS_POSIX) - // If chromium has never been started on this account, the cache path may not + // If chromium has never been started on this account, the cache path will not // exist. - if (dir_type == base::DIR_CACHE) + if (dir_type == base::DIR_USER_CACHE) return result && !path.value().empty(); #endif return result && !path.value().empty() && file_util::PathExists(path); |