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

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

Issue 1054363003: replace request.node with request.target (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 b62c648119d078226c11996036d309383aa0e0af..d04fa7a6d948d1e1a2e011ef20fc6bcb9edb7f16 100644
--- a/pkg/analysis_server/test/completion_test.dart
+++ b/pkg/analysis_server/test/completion_test.dart
@@ -1835,7 +1835,7 @@ class Fclass extends Bclass !Awith !B Eclass {}''', <String>[
"B-Ctype",
"C+Bclass",
"C-Eclass"
- ], failingTests: '12345679ABC');
+ ], failingTests: '23467ABC');
// keywords
buildTests('test009', '''
@@ -1852,7 +1852,7 @@ typ!7edef !5n!6''', <String>[
"5+TestFn2",
"6+num",
"7+typedef"
- ], failingTests: '12347');
+ ], failingTests: '1234');
buildTests('test010', '''
class test !8<!1t !2 !3extends String,!4 List,!5 !6>!7 {}
@@ -1969,7 +1969,7 @@ class Q {
"J+if",
"K+else",
"L+return"
- ], failingTests: '123456789ABCDEFGHJKL');
+ ], failingTests: '59BCDEHK');
// operators in function
buildTests('test015', '''f(a,b,c) => a + b * c !1;''', <String>["1+=="],
@@ -1995,11 +1995,11 @@ class Q {
"6+hide",
"7+show",
"8-null"
- ], failingTests: '1234567');
+ ], failingTests: '1567');
// keywords
buildTests('test018', '''!1part !2of foo;''', <String>["1+part", "2+of"],
- failingTests: '12');
+ failingTests: '2');
buildTests('test019', '''
var truefalse = 0;

Powered by Google App Engine
This is Rietveld 408576698