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

Unified Diff: pkg/analysis_server/test/integration/test_all.dart

Issue 422343005: Fix analysis server integration/test_all.dart. (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
« no previous file with comments | « pkg/analysis_server/test/integration/analysis_domain_int_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/integration/test_all.dart
diff --git a/pkg/analysis_server/test/integration/test_all.dart b/pkg/analysis_server/test/integration/test_all.dart
index 74d5ee74798944b097a81e0419243bfc34f5f9f7..ce0dc3ef388900a1a2277846b17688e41e3a930f 100644
--- a/pkg/analysis_server/test/integration/test_all.dart
+++ b/pkg/analysis_server/test/integration/test_all.dart
@@ -4,10 +4,10 @@
import 'package:unittest/unittest.dart';
-import 'analysis_domain_inttest.dart' as analysis_domain_inttest;
-import 'analysis_error_inttest.dart' as analysis_error_inttest;
-import 'completion_domain_inttest.dart' as completion_domain_inttest;
-import 'server_domain_inttest.dart' as server_domain_inttest;
+import 'analysis_domain_int_test.dart' as analysis_domain_int_test;
+import 'analysis_error_int_test.dart' as analysis_error_int_test;
+import 'completion_domain_int_test.dart' as completion_domain_int_test;
+import 'server_domain_int_test.dart' as server_domain_int_test;
/**
* Utility for manually running all integration tests.
@@ -15,9 +15,9 @@ import 'server_domain_inttest.dart' as server_domain_inttest;
main() {
groupSep = ' | ';
group('analysis_server_integration', () {
- analysis_domain_inttest.main();
- analysis_error_inttest.main();
- completion_domain_inttest.main();
- server_domain_inttest.main();
+ analysis_domain_int_test.main();
+ analysis_error_int_test.main();
+ completion_domain_int_test.main();
+ server_domain_int_test.main();
});
}
« no previous file with comments | « pkg/analysis_server/test/integration/analysis_domain_int_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698