Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: pkg/analysis_server/test/completion_test.dart

Issue 1506623002: fix combinator contributor (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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',

Powered by Google App Engine
This is Rietveld 408576698