| Index: pkg/analysis_server/test/services/completion/dart/library_member_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/dart/library_member_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/library_member_contributor_test.dart
|
| index 52e5ff526467d23e5d89ed93e9f9ff26e2407aa4..5e1e42017f18ef9527c0766fd26824eddf1ec4c3 100644
|
| --- a/pkg/analysis_server/test/services/completion/dart/library_member_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/dart/library_member_contributor_test.dart
|
| @@ -61,7 +61,7 @@ class LibraryMemberContributorTest extends DartCompletionContributorTest {
|
| import "dart:math" as math;
|
| main() {math.^.}''');
|
| await computeSuggestions();
|
| - assertSuggestFunction('min', 'num');
|
| + assertSuggestFunction('min', 'T');
|
| }
|
|
|
| test_libraryPrefix_cascade3() async {
|
| @@ -77,7 +77,7 @@ class LibraryMemberContributorTest extends DartCompletionContributorTest {
|
| import "dart:math" as math;
|
| main() {math.^.a}''');
|
| await computeSuggestions();
|
| - assertSuggestFunction('min', 'num');
|
| + assertSuggestFunction('min', 'T');
|
| }
|
|
|
| test_libraryPrefix_deferred() async {
|
|
|