Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8399)

Unified Diff: chrome/test/data/extensions/api_test/file_system_provider/create_file/test.js

Issue 412163002: [fsp] Fix linter issues in JS tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
});
- },
+ }
]);
}

Powered by Google App Engine
This is Rietveld 408576698