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

Unified Diff: ui/file_manager/file_manager/background/js/import_history_unittest.js

Issue 2890123003: Compile file_manager and eliminate gyp v1 from Files App! (Closed)
Patch Set: Fix test failures. Format. Created 3 years, 7 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: ui/file_manager/file_manager/background/js/import_history_unittest.js
diff --git a/ui/file_manager/file_manager/background/js/import_history_unittest.js b/ui/file_manager/file_manager/background/js/import_history_unittest.js
index 8af22cf9ea0e439cb30a1a6d04766fad2dea81c5..0cde2e479b366cfc8ae059ad45701af69f5db318 100644
--- a/ui/file_manager/file_manager/background/js/import_history_unittest.js
+++ b/ui/file_manager/file_manager/background/js/import_history_unittest.js
@@ -125,7 +125,7 @@ function testMarkCopied_FiresChangedEvent(callback) {
function() {
recorder.assertCallCount(1);
assertEquals(
- importer.ImportHistory.State.COPIED,
+ importer.ImportHistoryState.COPIED,
recorder.getLastArguments()[0]['state']);
});
});
@@ -202,7 +202,7 @@ function testMarkImport_FiresChangedEvent(callback) {
function() {
recorder.assertCallCount(1);
assertEquals(
- importer.ImportHistory.State.IMPORTED,
+ importer.ImportHistoryState.IMPORTED,
recorder.getLastArguments()[0]['state']);
});
});

Powered by Google App Engine
This is Rietveld 408576698