| Index: utils/tests/pub/install/pub_install_test.dart
|
| diff --git a/utils/tests/pub/install/pub_install_test.dart b/utils/tests/pub/install/pub_install_test.dart
|
| index 1ce3a6a0bf23091aaedf3ae823bada1bf95cd77d..4f9dc433974db0de3bdef1a208e57f141978db22 100644
|
| --- a/utils/tests/pub/install/pub_install_test.dart
|
| +++ b/utils/tests/pub/install/pub_install_test.dart
|
| @@ -89,7 +89,8 @@ main() {
|
|
|
| schedulePub(args: ['install'],
|
| error: new RegExp(r'Warning: Package "foo" does not have a "lib" '
|
| - 'directory.'),
|
| + 'directory so you will not be able to import any libraries from '
|
| + 'it.'),
|
| output: new RegExp(r"Dependencies installed!$"));
|
|
|
| run();
|
| @@ -272,23 +273,4 @@ main() {
|
| run();
|
| });
|
| });
|
| -
|
| - // TODO(rnystrom): Remove this when old layout support is removed. (#4964)
|
| - test('shows a warning if the entrypoint uses the old layout', () {
|
| - // The symlink should use the name in the pubspec, not the name of the
|
| - // directory.
|
| - dir(appPath, [
|
| - pubspec({"name": "myapp_name"}),
|
| - file("foo.dart", 'main() => "foo";'),
|
| - ]).scheduleCreate();
|
| -
|
| - schedulePub(args: ['install'],
|
| - error: '''
|
| - Warning: Package "myapp_name" is using a deprecated layout.
|
| - See http://www.dartlang.org/docs/pub-package-manager/package-layout.html for details.
|
| - ''',
|
| - output: new RegExp(r"Dependencies installed!$"));
|
| -
|
| - run();
|
| - });
|
| }
|
|
|