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

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

Issue 1053663002: add type completions after "on" in a try block (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix tests Created 5 years, 9 months 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 cc43193d3770000315ddc0aa141b6cd41df6f09d..b62c648119d078226c11996036d309383aa0e0af 100644
--- a/pkg/analysis_server/test/completion_test.dart
+++ b/pkg/analysis_server/test/completion_test.dart
@@ -1927,7 +1927,7 @@ class Q {
"8+==",
"9+==",
"0+k"
- ], failingTests: '5689');
+ ], failingTests: '689');
// keywords
buildTests('test014', '''
@@ -2100,8 +2100,7 @@ class T {
buildTests('test031',
'''class Caster {} m() {try {} on Cas!1ter catch (CastBlock) {!2}}''',
- <String>["1+Caster", "1-CastBlock", "2+Caster", "2+CastBlock"],
- failingTests: '1');
+ <String>["1+Caster", "1-CastBlock", "2+Caster", "2+CastBlock"]);
buildTests('test032', '''
const ONE = 1;

Powered by Google App Engine
This is Rietveld 408576698