| Index: pkg/analysis_server/test/completion_test.dart
|
| diff --git a/pkg/analysis_server/test/completion_test.dart b/pkg/analysis_server/test/completion_test.dart
|
| index ff935a596dc430256056605731c83db6b94ff512..0d5ea53d6aa3fc44c92faf763404f9cd9cf1171c 100644
|
| --- a/pkg/analysis_server/test/completion_test.dart
|
| +++ b/pkg/analysis_server/test/completion_test.dart
|
| @@ -1121,44 +1121,38 @@ main(A a) {
|
| buildTests(
|
| 'testCompletion_combinator_afterComma',
|
| '''
|
| -"import 'dart:math' show cos, !1;''',
|
| - <String>["1+PI", "1+sin", "1+Random", "1-String"],
|
| - failingTests: '1');
|
| +import 'dart:math' show cos, !1;''',
|
| + <String>["1+PI", "1+sin", "1+Random", "1-String"]);
|
|
|
| buildTests(
|
| 'testCompletion_combinator_ended',
|
| '''
|
| import 'dart:math' show !1;"''',
|
| - <String>["1+PI", "1+sin", "1+Random", "1-String"],
|
| - failingTests: '1');
|
| + <String>["1+PI", "1+sin", "1+Random", "1-String"]);
|
|
|
| buildTests(
|
| 'testCompletion_combinator_export',
|
| '''
|
| export 'dart:math' show !1;"''',
|
| - <String>["1+PI", "1+sin", "1+Random", "1-String"],
|
| - failingTests: '1');
|
| + <String>["1+PI", "1+sin", "1+Random", "1-String"]);
|
|
|
| buildTests(
|
| 'testCompletion_combinator_hide',
|
| '''
|
| import 'dart:math' hide !1;"''',
|
| - <String>["1+PI", "1+sin", "1+Random", "1-String"],
|
| - failingTests: '1');
|
| + <String>["1+PI", "1+sin", "1+Random", "1-String"]);
|
|
|
| buildTests(
|
| 'testCompletion_combinator_notEnded',
|
| '''
|
| import 'dart:math' show !1"''',
|
| - <String>["1+PI", "1+sin", "1+Random", "1-String"],
|
| - failingTests: '1');
|
| + <String>["1+PI", "1+sin", "1+Random", "1-String"]);
|
|
|
| buildTests(
|
| 'testCompletion_combinator_usePrefix',
|
| '''
|
| import 'dart:math' show s!1"''',
|
| - <String>["1+sin", "1+sqrt", "1-cos", "1-String"],
|
| - failingTests: '1');
|
| + <String>["1+sin", "1+sqrt", "1-cos", "1-String"]);
|
|
|
| buildTests(
|
| 'testCompletion_constructor_field',
|
|
|