| Index: chrome/installer/util/lzma_util_unittest.cc
|
| diff --git a/chrome/installer/util/lzma_util_unittest.cc b/chrome/installer/util/lzma_util_unittest.cc
|
| index 5f00a36d5fb25c2dd10054ebaa86be29277183b6..fbb0abe06e4cc5d658f3a89e03311dad49630aa7 100644
|
| --- a/chrome/installer/util/lzma_util_unittest.cc
|
| +++ b/chrome/installer/util/lzma_util_unittest.cc
|
| @@ -58,7 +58,7 @@ TEST_F(LzmaUtilTest, OpenArchiveTest) {
|
|
|
| // Test that we can extract archives successfully.
|
| TEST_F(LzmaUtilTest, UnPackTest) {
|
| - base::FilePath extract_dir(temp_dir_.path());
|
| + base::FilePath extract_dir(temp_dir_.GetPath());
|
| extract_dir = extract_dir.AppendASCII("UnPackTest");
|
| ASSERT_FALSE(base::PathExists(extract_dir));
|
| EXPECT_TRUE(base::CreateDirectory(extract_dir));
|
| @@ -103,7 +103,7 @@ TEST_F(LzmaUtilTest, UnPackTest) {
|
|
|
| // Test the static method that can be used to unpack archives.
|
| TEST_F(LzmaUtilTest, UnPackArchiveTest) {
|
| - base::FilePath extract_dir(temp_dir_.path());
|
| + base::FilePath extract_dir(temp_dir_.GetPath());
|
| extract_dir = extract_dir.AppendASCII("UnPackArchiveTest");
|
| ASSERT_FALSE(base::PathExists(extract_dir));
|
| EXPECT_TRUE(base::CreateDirectory(extract_dir));
|
|
|