| Index: chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
|
| index a99e602bfd793bd671b7b222d7ff5556b41bff57..08ff1e531163b577bc30f01a3fdabe32f8476592 100644
|
| --- a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
|
| +++ b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry_with_write/test.js
|
| @@ -4,10 +4,10 @@
|
|
|
| chrome.test.runTests([
|
| function getWritableEntry() {
|
| - chrome.fileSystem.chooseFile(chrome.test.callbackPass(function(entry) {
|
| + chrome.fileSystem.chooseEntry(chrome.test.callbackPass(function(entry) {
|
| chrome.test.assertEq('writable.txt', entry.name);
|
| // Test that we can get the display path of the file.
|
| - chrome.fileSystem.getWritableFileEntry(entry, chrome.test.callbackPass(
|
| + chrome.fileSystem.getWritableEntry(entry, chrome.test.callbackPass(
|
| function(writable) {
|
| checkEntry(writable, 'writable.txt', false, true);
|
| }));
|
|
|