aboutsummaryrefslogtreecommitdiffstats
path: root/brillo/key_value_store_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'brillo/key_value_store_unittest.cc')
-rw-r--r--brillo/key_value_store_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/brillo/key_value_store_unittest.cc b/brillo/key_value_store_unittest.cc
index cd18e89..04af5fd 100644
--- a/brillo/key_value_store_unittest.cc
+++ b/brillo/key_value_store_unittest.cc
@@ -40,8 +40,8 @@ class KeyValueStoreTest : public ::testing::Test {
TEST_F(KeyValueStoreTest, LoadAndSaveFromFile) {
base::ScopedTempDir temp_dir_;
CHECK(temp_dir_.CreateUniqueTempDir());
- base::FilePath temp_file_ = temp_dir_.path().Append("temp.conf");
- base::FilePath saved_temp_file_ = temp_dir_.path().Append("saved_temp.conf");
+ base::FilePath temp_file_ = temp_dir_.GetPath().Append("temp.conf");
+ base::FilePath saved_temp_file_ = temp_dir_.GetPath().Append("saved_temp.conf");
string blob = "A=B\n# Comment\n";
ASSERT_EQ(blob.size(), base::WriteFile(temp_file_, blob.data(), blob.size()));