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

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

Issue 1505443002: (TBR) get completion tests passing (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9c3ab100875703b6b619a50d26fdeff8edd281c5..ff935a596dc430256056605731c83db6b94ff512 100644
--- a/pkg/analysis_server/test/completion_test.dart
+++ b/pkg/analysis_server/test/completion_test.dart
@@ -1129,31 +1129,36 @@ main(A a) {
'testCompletion_combinator_ended',
'''
import 'dart:math' show !1;"''',
- <String>["1+PI", "1+sin", "1+Random", "1-String"]);
+ <String>["1+PI", "1+sin", "1+Random", "1-String"],
+ failingTests: '1');
buildTests(
'testCompletion_combinator_export',
'''
export 'dart:math' show !1;"''',
- <String>["1+PI", "1+sin", "1+Random", "1-String"]);
+ <String>["1+PI", "1+sin", "1+Random", "1-String"],
+ failingTests: '1');
buildTests(
'testCompletion_combinator_hide',
'''
import 'dart:math' hide !1;"''',
- <String>["1+PI", "1+sin", "1+Random", "1-String"]);
+ <String>["1+PI", "1+sin", "1+Random", "1-String"],
+ failingTests: '1');
buildTests(
'testCompletion_combinator_notEnded',
'''
import 'dart:math' show !1"''',
- <String>["1+PI", "1+sin", "1+Random", "1-String"]);
+ <String>["1+PI", "1+sin", "1+Random", "1-String"],
+ failingTests: '1');
buildTests(
'testCompletion_combinator_usePrefix',
'''
import 'dart:math' show s!1"''',
- <String>["1+sin", "1+sqrt", "1-cos", "1-String"]);
+ <String>["1+sin", "1+sqrt", "1-cos", "1-String"],
+ failingTests: '1');
buildTests(
'testCompletion_constructor_field',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698