| Index: chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc b/chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc
|
| index 643960210894ddaeb75fd38c75463f7f7bec83e4..007ba40cb6df0359056153b29c96a0c6f5c5a013 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/truncate_unittest.cc
|
| @@ -44,7 +44,7 @@ class FileSystemProviderOperationsTruncateTest : public testing::Test {
|
| mount_options.writable = true;
|
| file_system_info_ = ProvidedFileSystemInfo(
|
| kExtensionId, mount_options, base::FilePath(), false /* configurable */,
|
| - extensions::SOURCE_FILE);
|
| + true /* watchable */, extensions::SOURCE_FILE);
|
| }
|
|
|
| ProvidedFileSystemInfo file_system_info_;
|
| @@ -105,7 +105,7 @@ TEST_F(FileSystemProviderOperationsTruncateTest, Execute_ReadOnly) {
|
| const ProvidedFileSystemInfo read_only_file_system_info(
|
| kExtensionId, MountOptions(kFileSystemId, "" /* display_name */),
|
| base::FilePath() /* mount_path */, false /* configurable */,
|
| - extensions::SOURCE_FILE);
|
| + true /* watchable */, extensions::SOURCE_FILE);
|
|
|
| Truncate truncate(NULL, file_system_info_, base::FilePath(kFilePath),
|
| kTruncateLength,
|
|
|