| Index: pkg/analyzer/test/src/task/options_work_manager_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/options_work_manager_test.dart b/pkg/analyzer/test/src/task/options_work_manager_test.dart
|
| index 424a7291dfc6049396c710a655cf513db78fc9a6..f54283dbe6739bb93f44b675d4aefbdcac094a3b 100644
|
| --- a/pkg/analyzer/test/src/task/options_work_manager_test.dart
|
| +++ b/pkg/analyzer/test/src/task/options_work_manager_test.dart
|
| @@ -111,8 +111,8 @@ class OptionsWorkManagerTest {
|
| }
|
|
|
| void test_applyPriorityTargets() {
|
| - when(context.shouldErrorsBeAnalyzed(source2, null)).thenReturn(true);
|
| - when(context.shouldErrorsBeAnalyzed(source3, null)).thenReturn(true);
|
| + when(context.shouldErrorsBeAnalyzed(source2)).thenReturn(true);
|
| + when(context.shouldErrorsBeAnalyzed(source3)).thenReturn(true);
|
| manager.priorityResultQueue
|
| .add(new TargetedResult(source1, ANALYSIS_OPTIONS_ERRORS));
|
| manager.priorityResultQueue
|
|
|