Chromium Code Reviews| 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..808e9485777013ed785f730f37b20b7c42e2068b 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,7 @@ 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 can have permission to get the entry as writable. |
|
benwells
2012/07/10 06:40:23
Nice catch!
Nit: ... that we cannot get a writable
thorogood
2012/07/10 06:49:22
Done.
|
| chrome.fileSystem.getWritableFileEntry(entry, chrome.test.callbackFail( |
| 'Operation requires fileSystemWrite permission', function() {})); |
| })); |