Index: chrome/test/data/extensions/api_test/sync_file_system/get_file_status/test.js |
diff --git a/chrome/test/data/extensions/api_test/sync_file_system/get_file_status/test.js b/chrome/test/data/extensions/api_test/sync_file_system/get_file_status/test.js |
index 4ad1e4c4b4f2f92dfe868d5f8684e6633745e2c1..3ec32f4c4f0eddf663a04022bc806741c8e4dbae 100644 |
--- a/chrome/test/data/extensions/api_test/sync_file_system/get_file_status/test.js |
+++ b/chrome/test/data/extensions/api_test/sync_file_system/get_file_status/test.js |
@@ -11,12 +11,12 @@ var testStep = [ |
fileSystem.root.getFile('Test.txt', {create: true}, testStep.shift(), |
errorHandler); |
}, |
- // Confirm file is conflicting as this is the mocked value. |
+ // Confirm file is pending as this is the mocked value. |
function(fileEntry) { |
chrome.syncFileSystem.getFileStatus(fileEntry, testStep.shift()); |
}, |
function(fileStatus) { |
- chrome.test.assertEq("conflicting", fileStatus); |
+ chrome.test.assertEq("pending", fileStatus); |
chrome.test.succeed(); |
} |
]; |