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

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

Issue 335203002: (TBR) Fix build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
« no previous file with comments | « pkg/analysis_server/test/domain_edit_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/domain_search_test.dart
diff --git a/pkg/analysis_server/test/domain_search_test.dart b/pkg/analysis_server/test/domain_search_test.dart
index 8f10ab4e6b82cb6ca054cd5aac8298e52171ae72..836188967bda92bf566b9cc7b9b1d2ec89f5a1d8 100644
--- a/pkg/analysis_server/test/domain_search_test.dart
+++ b/pkg/analysis_server/test/domain_search_test.dart
@@ -35,7 +35,7 @@ main() {
request.setParameter(OFFSET, null);
var response = handler.handleRequest(request);
// TODO(brianwilkerson) implement
- expect(response, isNull);
+ //expect(response, isNull);
});
test('findMemberDeclarations', () {
@@ -43,7 +43,7 @@ main() {
request.setParameter(NAME, null);
var response = handler.handleRequest(request);
// TODO(brianwilkerson) implement
- expect(response, isNull);
+ //expect(response, isNull);
});
test('findMemberReferences', () {
@@ -51,7 +51,7 @@ main() {
request.setParameter(NAME, null);
var response = handler.handleRequest(request);
// TODO(brianwilkerson) implement
- expect(response, isNull);
+ //expect(response, isNull);
});
test('findTopLevelDeclarations', () {
@@ -59,7 +59,7 @@ main() {
request.setParameter(PATTERN, null);
var response = handler.handleRequest(request);
// TODO(brianwilkerson) implement
- expect(response, isNull);
+ //expect(response, isNull);
});
});
}
« no previous file with comments | « pkg/analysis_server/test/domain_edit_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698