| Index: sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_multiple_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
|
| similarity index 83%
|
| rename from sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_multiple_test.dart
|
| rename to sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
|
| index c5e35dfc20a33c92021e0f925a48830147b5fed1..d31bf9d5d40137106eb3efde8acbb1d007c0858a 100644
|
| --- a/sdk/lib/_internal/pub/test/serve/web_socket/asset_id_to_urls_multiple_test.dart
|
| +++ b/sdk/lib/_internal/pub/test/serve/web_socket/path_to_urls_multiple_test.dart
|
| @@ -14,7 +14,7 @@ import '../utils.dart';
|
| main() {
|
| // TODO(rnystrom): Split into independent tests.
|
| initConfig();
|
| - integration("assetIdToUrls returns multiple urls if servers overlap", () {
|
| + integration("pathToUrls returns multiple urls if servers overlap", () {
|
| d.dir(appPath, [
|
| d.appPubspec(),
|
| d.dir("test", [
|
| @@ -32,8 +32,8 @@ main() {
|
|
|
| schedule(() {
|
| expectWebSocketCall({
|
| - "command": "assetIdToUrls",
|
| - "path": "web/index.html"
|
| + "command": "pathToUrls",
|
| + "path": path.join("web", "index.html")
|
| }, replyEquals: {
|
| "urls": [
|
| getServerUrl("web", "index.html")
|
| @@ -41,8 +41,8 @@ main() {
|
| });
|
|
|
| expectWebSocketCall({
|
| - "command": "assetIdToUrls",
|
| - "path": "web/sub/bar.html"
|
| + "command": "pathToUrls",
|
| + "path": path.join("web", "sub", "bar.html")
|
| }, replyEquals: {
|
| "urls": [
|
| getServerUrl("web", "sub/bar.html"),
|
|
|