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

Unified Diff: sdk/lib/_internal/pub_generated/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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_generated/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart b/sdk/lib/_internal/pub_generated/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart
similarity index 72%
copy from sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart
copy to sdk/lib/_internal/pub_generated/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart
index 984a65878e9aebf419a8a8b79d9b22cf4af2eee6..7266680f05ca990880cb5b56c271cdc47f420a51 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/serve/web_socket/serve_directory_and_immediately_unserve_test.dart
@@ -14,25 +14,27 @@ import '../utils.dart';
main() {
initConfig();
- integration("binds a directory to a new port and immediately unbinds that "
- "directory", () {
- d.dir(appPath, [
- d.appPubspec(),
- d.dir("test", [
- d.file("index.html", "<test body>")
- ]),
- d.dir("web", [
- d.file("index.html", "<body>")
- ])
- ]).create();
+ integration(
+ "binds a directory to a new port and immediately unbinds that " "directory",
+ () {
+ d.dir(
+ appPath,
+ [
+ d.appPubspec(),
+ d.dir("test", [d.file("index.html", "<test body>")]),
+ d.dir("web", [d.file("index.html", "<body>")])]).create();
pubServe(args: ["web"]);
// We call [webSocketRequest] outside of the [schedule] call below because
// we need it to schedule the sending of the request to guarantee that the
// serve is sent before the unserve.
- var serveRequest = webSocketRequest("serveDirectory", {"path": "test"});
- var unserveRequest = webSocketRequest("unserveDirectory", {"path": "test"});
+ var serveRequest = webSocketRequest("serveDirectory", {
+ "path": "test"
+ });
+ var unserveRequest = webSocketRequest("unserveDirectory", {
+ "path": "test"
+ });
schedule(() {
return Future.wait([serveRequest, unserveRequest]).then((results) {

Powered by Google App Engine
This is Rietveld 408576698