summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/installer/util/self_cleaning_temp_dir_unittest.cc')
-rw-r--r--chrome/installer/util/self_cleaning_temp_dir_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/self_cleaning_temp_dir_unittest.cc b/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
index 64445e69..8f3df0e 100644
--- a/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
+++ b/chrome/installer/util/self_cleaning_temp_dir_unittest.cc
@@ -28,7 +28,7 @@ std::string GetRandomFilename() {
// Hexify the value.
std::string result(base::HexEncode(&data[0], arraysize(data)));
- EXPECT_EQ(8, result.size());
+ EXPECT_EQ(8u, result.size());
// Replace the first digit with the letter 'R' (for "random", get it?).
result[0] = 'R';
@@ -159,7 +159,7 @@ TEST_F(SelfCleaningTempDirTest, LeaveUsedOnDestroy) {
EXPECT_EQ(parent_temp_dir.Append(L"Three"), temp_dir.path());
EXPECT_TRUE(base::DirectoryExists(temp_dir.path()));
// Drop a file somewhere.
- EXPECT_EQ(arraysize(kHiHon) - 1,
+ EXPECT_EQ(static_cast<int>(arraysize(kHiHon) - 1),
base::WriteFile(parent_temp_dir.AppendASCII(GetRandomFilename()),
kHiHon, arraysize(kHiHon) - 1));
}