| Index: chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
|
| index 35f270c6c93bc92722d533c08eb5114ac4927421..b933a2ebca57bea0e656ed833f2066c0fde64fb5 100644
|
| --- a/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
|
| +++ b/chrome/test/data/extensions/api_test/file_system/get_writable_file_entry/test.js
|
| @@ -6,7 +6,8 @@ chrome.test.runTests([
|
| function getWritableEntry() {
|
| chrome.fileSystem.chooseFile(chrome.test.callbackPass(function(entry) {
|
| chrome.test.assertEq('writable.txt', entry.name);
|
| - // Test that we can get the display path of the file.
|
| + // Test that we cannot get a writable entry when we don't have permission
|
| + // to.
|
| chrome.fileSystem.getWritableFileEntry(entry, chrome.test.callbackFail(
|
| 'Operation requires fileSystemWrite permission', function() {}));
|
| }));
|
|
|