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

Unified Diff: chrome/test/data/file_manager/unit_tests/device_handler_unittest.js

Issue 409353002: Files.app: handle UNSUPPORTED_FILESYSTEM errors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix. 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/file_manager/unit_tests/device_handler_unittest.js
diff --git a/chrome/test/data/file_manager/unit_tests/device_handler_unittest.js b/chrome/test/data/file_manager/unit_tests/device_handler_unittest.js
index e81062faf0fca1eec2b6bba247be679921a319e7..e0c897667ff72c6dc840594828628c651575ea26 100644
--- a/chrome/test/data/file_manager/unit_tests/device_handler_unittest.js
+++ b/chrome/test/data/file_manager/unit_tests/device_handler_unittest.js
@@ -166,7 +166,7 @@ function testUnsupportedDevice() {
registerTypicalDevice();
chrome.fileBrowserPrivate.onMountCompleted.dispatch({
- status: 'error_unsuported_filesystem',
+ status: 'error_unsupported_filesystem',
volumeMetadata: {
isParentDevice: false,
deviceType: 'usb',
@@ -197,7 +197,7 @@ function testUnsupportedWithUnknownParent() {
chrome.notifications.items['deviceFail:/device/path'].message);
chrome.fileBrowserPrivate.onMountCompleted.dispatch({
- status: 'error_unsuported_filesystem',
+ status: 'error_unsupported_filesystem',
volumeMetadata: {
isParentDevice: false,
deviceType: 'usb',
@@ -226,7 +226,7 @@ function testMountPartialSuccess() {
assertEquals(0, Object.keys(chrome.notifications.items).length);
chrome.fileBrowserPrivate.onMountCompleted.dispatch({
- status: 'error_unsuported_filesystem',
+ status: 'error_unsupported_filesystem',
volumeMetadata: {
isParentDevice: false,
deviceType: 'usb',
« no previous file with comments | « chrome/common/extensions/api/file_browser_private.idl ('k') | ui/file_manager/file_manager/background/js/device_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698