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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart

Issue 207563002: Move pub's web socket API over to use JSON RPC 2.0. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 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: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
index 4bc8307a2f6772dafdaccb36d2edee23f80ad817..04bfda5abea082070c19fb78f0f7089888028863 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart
@@ -23,15 +23,12 @@ main() {
pubServe();
- schedule(() {
- expectWebSocketCall({
- "command": "pathToUrls",
- "path": p.join("web", "main.dart"),
- "line": 12345
- }, replyEquals: {
- "urls": [getServerUrl("web", "main.dart")],
- "line": 12345
- });
+ expectWebSocketResult("pathToUrls", {
+ "path": p.join("web", "main.dart"),
+ "line": 12345
+ }, {
+ "urls": [getServerUrl("web", "main.dart")],
+ "line": 12345
});
endPubServe();

Powered by Google App Engine
This is Rietveld 408576698