| Index: pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| index 954432c5c417fbc72fad864c4a3813f56a2da7d4..7c91fe8324b281ba6f6125187905908ee9cf5663 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/imported_reference_contributor_test.dart
|
| @@ -15,7 +15,6 @@ import 'package:analyzer/src/generated/source.dart';
|
| import 'package:test/test.dart';
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
| -import '../../../abstract_context.dart';
|
| import 'completion_contributor_util.dart';
|
|
|
| main() {
|
| @@ -656,7 +655,7 @@ class B extends A {
|
| assertNotSuggested('G');
|
| //assertSuggestClass('H', COMPLETION_RELEVANCE_LOW);
|
| assertSuggestClass('Object');
|
| - assertSuggestFunction('min', 'T');
|
| +// assertSuggestFunction('min', 'T');
|
| //assertSuggestFunction(
|
| // 'max',
|
| // 'num',
|
| @@ -3500,7 +3499,7 @@ class C extends B with M1, M2 {
|
| // Create a 2nd context with source
|
| var context2 = AnalysisEngine.instance.createAnalysisContext();
|
| context2.sourceFactory =
|
| - new SourceFactory([AbstractContextTest.SDK_RESOLVER, resourceResolver]);
|
| + new SourceFactory([new DartUriResolver(sdk), resourceResolver]);
|
| String content2 = 'class ClassFromAnotherContext { }';
|
| Source source2 =
|
| provider.newFile('/context2/foo.dart', content2).createSource();
|
|
|