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

Unified Diff: pkg/analysis_server/test/analysis/notification_implemented_test.dart

Issue 1398293002: Move the wire protocol support into the public API (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Add missed files Created 5 years, 2 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/analysis/notification_implemented_test.dart
diff --git a/pkg/analysis_server/test/analysis/notification_implemented_test.dart b/pkg/analysis_server/test/analysis/notification_implemented_test.dart
index fc72b72d566babe7ebf6e0551a59cea4fa1f69f1..5c1c6eda26e3e077e8478c28049fc712c7d24e91 100644
--- a/pkg/analysis_server/test/analysis/notification_implemented_test.dart
+++ b/pkg/analysis_server/test/analysis/notification_implemented_test.dart
@@ -6,8 +6,8 @@ library test.analysis.notification.implemented;
import 'dart:async';
+import 'package:analysis_server/plugin/protocol/protocol.dart';
import 'package:analysis_server/src/constants.dart';
-import 'package:analysis_server/src/protocol.dart';
import 'package:analysis_server/src/services/index/index.dart';
import 'package:analysis_server/src/services/index/local_memory_index.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
@@ -321,7 +321,7 @@ class B extends A {
return new Future.value();
}
return new Future.delayed(
- new Duration(milliseconds:1), () => waitForNotification(times - 1));
+ new Duration(milliseconds: 1), () => waitForNotification(times - 1));
}
return waitForNotification(30000);
}

Powered by Google App Engine
This is Rietveld 408576698