| Index: ppapi/tests/test_file_ref.cc
|
| diff --git a/ppapi/tests/test_file_ref.cc b/ppapi/tests/test_file_ref.cc
|
| index 4403646d20d1440fddd2434a0d5af4fc9820366e..1596333cbbb90ec4b8ce95e4199e846328cbcb3c 100644
|
| --- a/ppapi/tests/test_file_ref.cc
|
| +++ b/ppapi/tests/test_file_ref.cc
|
| @@ -254,20 +254,6 @@ std::string TestFileRef::TestMakeDirectory() {
|
| if (rv != PP_OK)
|
| return ReportError("FileSystem::Open", rv);
|
|
|
| - // Open aborted (see the DirectoryReader test for comments).
|
| - callback.reset_run_count();
|
| - rv = pp::FileSystem_Dev(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY)
|
| - .Open(1024, callback);
|
| - if (callback.run_count() > 0)
|
| - return "FileSystem::Open ran callback synchronously.";
|
| - if (rv == PP_ERROR_WOULDBLOCK) {
|
| - rv = callback.WaitForResult();
|
| - if (rv != PP_ERROR_ABORTED)
|
| - return "FileSystem::Open not aborted.";
|
| - } else if (rv != PP_OK) {
|
| - return ReportError("FileSystem::Open", rv);
|
| - }
|
| -
|
| // MakeDirectory.
|
| pp::FileRef_Dev dir_ref(file_system, "/test_dir_make_directory");
|
| rv = dir_ref.MakeDirectory(callback);
|
|
|