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

Unified Diff: pkg/analysis_services/test/index/store/test_all.dart

Issue 426773002: Issue 20240. Use a FileManager that manages its own temporary directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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: pkg/analysis_services/test/index/store/test_all.dart
diff --git a/pkg/analysis_services/test/index/store/test_all.dart b/pkg/analysis_services/test/index/store/test_all.dart
index e0a8d1ff62c92ba57e9224a1c96e3ed9fb936805..4d3884a2a4cadb713e9906674048a122f34b5888 100644
--- a/pkg/analysis_services/test/index/store/test_all.dart
+++ b/pkg/analysis_services/test/index/store/test_all.dart
@@ -8,8 +8,8 @@ import 'package:unittest/unittest.dart';
import 'codec_test.dart' as codec_test;
import 'collection_test.dart' as collection_test;
-import 'separate_file_manager_test.dart' as separate_file_manager_test;
import 'split_store_test.dart' as split_store_test;
+import 'temporary_folder_file_manager_test.dart' as tmp_file_manager_test;
/**
@@ -20,7 +20,7 @@ main() {
group('store', () {
codec_test.main();
collection_test.main();
- separate_file_manager_test.main();
+ tmp_file_manager_test.main();
split_store_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698