| Index: chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| index 0fc3f07dac2ca448dae125fd660216c936e7c1d7..3fcc776913f1ceac08a998fe97904779abe061c4 100644
|
| --- a/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local/syncable_file_operation_runner_unittest.cc
|
| @@ -286,16 +286,15 @@ TEST_F(SyncableFileOperationRunnerTest, CopyAndMove) {
|
|
|
| TEST_F(SyncableFileOperationRunnerTest, Write) {
|
| EXPECT_EQ(base::PLATFORM_FILE_OK, file_system_.CreateFile(URL(kFile)));
|
| - const GURL kBlobURL("blob:foo");
|
| const std::string kData("Lorem ipsum.");
|
| - ScopedTextBlob blob(url_request_context_, kBlobURL, kData);
|
| + ScopedTextBlob blob(url_request_context_, "blob:foo", kData);
|
|
|
| sync_status()->StartSyncing(URL(kFile));
|
|
|
| ResetCallbackStatus();
|
| file_system_.operation_runner()->Write(
|
| &url_request_context_,
|
| - URL(kFile), kBlobURL, 0, GetWriteCallback(FROM_HERE));
|
| + URL(kFile), blob.GetBlobDataHandle(), 0, GetWriteCallback(FROM_HERE));
|
| base::MessageLoop::current()->RunUntilIdle();
|
| EXPECT_EQ(0, callback_count_);
|
|
|
|
|