| Index: chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js b/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
|
| index a225a9a07920ebb12ae10b4d07dd6c5968463ccc..e62721f5ca575d03f8ec4e4bc468bd41019f1751 100644
|
| --- a/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
|
| +++ b/chrome/test/data/extensions/api_test/file_system_provider/create_directory/test.js
|
| @@ -9,7 +9,7 @@
|
| * @const
|
| */
|
| var TESTING_DIRECTORY = Object.freeze({
|
| - isDirectory: false,
|
| + isDirectory: true,
|
| name: 'kitty',
|
| size: 0,
|
| modificationTime: new Date(2014, 4, 28, 10, 39, 15)
|
| @@ -80,6 +80,7 @@ function runTests() {
|
| chrome.test.fail(error.name);
|
| });
|
| },
|
| +
|
| // Create a directory (exclusive). Should fail, since the directory already
|
| // exists.
|
| function createDirectoryErrorExists() {
|
| @@ -92,7 +93,7 @@ function runTests() {
|
| chrome.test.assertEq('InvalidModificationError', error.name);
|
| onSuccess();
|
| });
|
| - },
|
| + }
|
| ]);
|
| }
|
|
|
|
|