| Index: chrome/test/data/extensions/api_test/file_system_provider/create_file/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/file_system_provider/create_file/test.js b/chrome/test/data/extensions/api_test/file_system_provider/create_file/test.js
|
| index 1473608a3dcb09392ed4d8a63b51dcd716d71127..c6929eaaa70a618f800197f6009f597b83e17f9e 100644
|
| --- a/chrome/test/data/extensions/api_test/file_system_provider/create_file/test.js
|
| +++ b/chrome/test/data/extensions/api_test/file_system_provider/create_file/test.js
|
| @@ -89,6 +89,7 @@ function runTests() {
|
| chrome.test.fail(error.name);
|
| });
|
| },
|
| +
|
| // Create a file which exists, non-exclusively. Should succeed.
|
| function createFileOrOpenSuccess() {
|
| var onSuccess = chrome.test.callbackPass();
|
| @@ -102,6 +103,7 @@ function runTests() {
|
| chrome.test.fail(error.name);
|
| });
|
| },
|
| +
|
| // Create a file which exists, exclusively. Should fail.
|
| function createFileExistsError() {
|
| var onSuccess = chrome.test.callbackPass();
|
| @@ -113,7 +115,7 @@ function runTests() {
|
| chrome.test.assertEq('InvalidModificationError', error.name);
|
| onSuccess();
|
| });
|
| - },
|
| + }
|
| ]);
|
| }
|
|
|
|
|