| Index: sdk/lib/_internal/pub_generated/test/run/runs_app_in_directory_in_entrypoint_test.dart
|
| diff --git a/sdk/lib/_internal/pub/test/run/runs_app_in_directory_in_entrypoint_test.dart b/sdk/lib/_internal/pub_generated/test/run/runs_app_in_directory_in_entrypoint_test.dart
|
| similarity index 69%
|
| copy from sdk/lib/_internal/pub/test/run/runs_app_in_directory_in_entrypoint_test.dart
|
| copy to sdk/lib/_internal/pub_generated/test/run/runs_app_in_directory_in_entrypoint_test.dart
|
| index b742c6a3a9bec31be8215015a07946e78c8b6111..488bff6f65b9f7c7fc433af60e29692eb5a76db5 100644
|
| --- a/sdk/lib/_internal/pub/test/run/runs_app_in_directory_in_entrypoint_test.dart
|
| +++ b/sdk/lib/_internal/pub_generated/test/run/runs_app_in_directory_in_entrypoint_test.dart
|
| @@ -10,15 +10,15 @@ import '../test_pub.dart';
|
| main() {
|
| initConfig();
|
| integration('runs a Dart application in the entrypoint package', () {
|
| - d.dir(appPath, [
|
| - d.appPubspec(),
|
| - d.dir("tool", [
|
| - d.file("app.dart", "main() => print('tool');"),
|
| - d.dir("sub", [
|
| - d.file("app.dart", "main() => print('sub');")
|
| - ])
|
| - ])
|
| - ]).create();
|
| + d.dir(
|
| + appPath,
|
| + [
|
| + d.appPubspec(),
|
| + d.dir(
|
| + "tool",
|
| + [
|
| + d.file("app.dart", "main() => print('tool');"),
|
| + d.dir("sub", [d.file("app.dart", "main() => print('sub');")])])]).create();
|
|
|
| var pub = pubRun(args: [path.join("tool", "app")]);
|
| pub.stdout.expect("tool");
|
|
|