| Index: pkg/analyzer/test/src/task/model_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/model_test.dart b/pkg/analyzer/test/src/task/model_test.dart
|
| index b75afd61a143e56e74ad3de2ea651f9ed6b804c7..00cdcfa24420877cc67479de735802c3aeb4ea47 100644
|
| --- a/pkg/analyzer/test/src/task/model_test.dart
|
| +++ b/pkg/analyzer/test/src/task/model_test.dart
|
| @@ -12,10 +12,11 @@ import 'package:unittest/unittest.dart';
|
|
|
| import '../../generated/test_support.dart';
|
| import '../../reflective_tests.dart';
|
| +import '../../utils.dart';
|
| import 'test_support.dart';
|
|
|
| main() {
|
| - groupSep = ' | ';
|
| + initializeTestEnvironment();
|
| runReflectiveTests(AnalysisTaskTest);
|
| runReflectiveTests(ResultDescriptorImplTest);
|
| runReflectiveTests(SimpleResultCachingPolicyTest);
|
| @@ -117,8 +118,8 @@ class TaskDescriptorImplTest extends EngineTestCase {
|
| }
|
|
|
| test_createTask() {
|
| - BuildTask buildTask =
|
| - (context, target) => new TestAnalysisTask(context, target);
|
| + BuildTask buildTask = (context, target) =>
|
| + new TestAnalysisTask(context, target);
|
| CreateTaskInputs createTaskInputs = (target) {};
|
| List<ResultDescriptor> results = <ResultDescriptor>[];
|
| TaskDescriptorImpl descriptor =
|
|
|