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

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

Issue 2638183002: Issue 28027. Move Null to the bottom in the Analyzer. (Closed)
Patch Set: Fixes for review comments. Created 3 years, 11 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 46a33fc837f12227d2d567080e4d3396cc7ab5ea..154f29bbb2f6bf944e330127b7f1cb6b6074a33c 100644
--- a/pkg/analysis_server/test/completion_test.dart
+++ b/pkg/analysis_server/test/completion_test.dart
@@ -863,8 +863,7 @@ main() { .!1 }''',
'testCommentSnippets083b',
'''
main() { null.!1 }''',
- <String>["1+toString"],
- failingTests: '1');
+ <String>["1+toString"]);
buildTests(
'testCommentSnippets085',
@@ -2648,8 +2647,7 @@ main() {
}''',
<String>["1+true", "1+truefalse", "1-falsetrue"]);
- buildTests('test020', '''var x = null.!1''', <String>["1+toString"],
- failingTests: '1');
+ buildTests('test020', '''var x = null.!1''', <String>["1+toString"]);
buildTests('test021', '''var x = .!1''', <String>["1-toString"]);

Powered by Google App Engine
This is Rietveld 408576698