| 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();
|
|
|