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

Unified Diff: pkg/analyzer_cli/test/super_mixin_test.dart

Issue 2658863002: Run analyzer_cli asynchronously. (Closed)
Patch Set: Created 3 years, 11 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/analyzer_cli/test/sdk_ext_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_cli/test/super_mixin_test.dart
diff --git a/pkg/analyzer_cli/test/super_mixin_test.dart b/pkg/analyzer_cli/test/super_mixin_test.dart
index f8902890512529909074263e3108a7a0bbf87c65..de1ad1af92355b7db2f46bff3d87fdb33248e952 100644
--- a/pkg/analyzer_cli/test/super_mixin_test.dart
+++ b/pkg/analyzer_cli/test/super_mixin_test.dart
@@ -38,7 +38,7 @@ void main() {
test('produces errors when option absent', () async {
var testPath = path.join(testDirectory, 'data/super_mixin_example.dart');
- new Driver().start([testPath]);
+ await new Driver().start([testPath]);
expect(exitCode, 3);
var stdout = outSink.toString();
@@ -56,7 +56,7 @@ void main() {
test('produces no errors when option present', () async {
var testPath = path.join(testDirectory, 'data/super_mixin_example.dart');
- new Driver().start(['--supermixin', testPath]);
+ await new Driver().start(['--supermixin', testPath]);
expect(exitCode, 0);
var stdout = outSink.toString();
« no previous file with comments | « pkg/analyzer_cli/test/sdk_ext_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698