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

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

Issue 209123003: Revert r34269, as it broke the editor build (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
===================================================================
--- sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart (revision 34273)
+++ sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_with_line_test.dart (working copy)
@@ -23,12 +23,15 @@
pubServe();
- expectWebSocketResult("pathToUrls", {
- "path": p.join("web", "main.dart"),
- "line": 12345
- }, {
- "urls": [getServerUrl("web", "main.dart")],
- "line": 12345
+ schedule(() {
+ expectWebSocketCall({
+ "command": "pathToUrls",
+ "path": p.join("web", "main.dart"),
+ "line": 12345
+ }, replyEquals: {
+ "urls": [getServerUrl("web", "main.dart")],
+ "line": 12345
+ });
});
endPubServe();

Powered by Google App Engine
This is Rietveld 408576698