| Index: pkg/analyzer/test/src/task/html_work_manager_test.dart
|
| diff --git a/pkg/analyzer/test/src/task/html_work_manager_test.dart b/pkg/analyzer/test/src/task/html_work_manager_test.dart
|
| index 0785f97c324973d54452be67ee01cfe9e14f4119..ee41381a562efdb025b7bd7503a6c2598125f661 100644
|
| --- a/pkg/analyzer/test/src/task/html_work_manager_test.dart
|
| +++ b/pkg/analyzer/test/src/task/html_work_manager_test.dart
|
| @@ -110,8 +110,8 @@ class HtmlWorkManagerTest {
|
| }
|
|
|
| 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, HTML_ERRORS));
|
| manager.priorityResultQueue.add(new TargetedResult(source2, HTML_ERRORS));
|
| // -source1 +source3
|
|
|