| Index: utils/tests/pub/pub_test.dart
|
| diff --git a/utils/tests/pub/pub_test.dart b/utils/tests/pub/pub_test.dart
|
| index 0bdfb04776ccf7bc42e753ad8010883987334a10..8b302d54885eb4f00dbc1c99d2a8ab315ac3c4da 100644
|
| --- a/utils/tests/pub/pub_test.dart
|
| +++ b/utils/tests/pub/pub_test.dart
|
| @@ -96,7 +96,7 @@ installCommand() {
|
| ]).scheduleCreate();
|
|
|
| dir(appPath, [
|
| - file('pubspec', 'dependencies:\n foo:')
|
| + file('pubspec.yaml', 'dependencies:\n foo:')
|
| ]).scheduleCreate();
|
|
|
| dir(packagesPath, [
|
| @@ -116,7 +116,7 @@ installCommand() {
|
| dir('lib', [
|
| dir('foo', [
|
| file('foo.dart', 'main() => "foo";'),
|
| - file('pubspec', 'dependencies:\n bar:')
|
| + file('pubspec.yaml', 'dependencies:\n bar:')
|
| ]),
|
| dir('bar', [
|
| file('bar.dart', 'main() => "bar";'),
|
| @@ -125,7 +125,7 @@ installCommand() {
|
| ]).scheduleCreate();
|
|
|
| dir(appPath, [
|
| - file('pubspec', 'dependencies:\n foo:')
|
| + file('pubspec.yaml', 'dependencies:\n foo:')
|
| ]).scheduleCreate();
|
|
|
| dir(packagesPath, [
|
| @@ -150,7 +150,7 @@ installCommand() {
|
| ]).scheduleCreate();
|
|
|
| dir(appPath, [
|
| - file('pubspec', '''
|
| + file('pubspec.yaml', '''
|
| dependencies:
|
| foo:
|
| git: ../foo.git
|
| @@ -172,7 +172,7 @@ dependencies:
|
| withGit(() {
|
| git('foo.git', [
|
| file('foo.dart', 'main() => "foo";'),
|
| - file('pubspec', '''
|
| + file('pubspec.yaml', '''
|
| dependencies:
|
| bar:
|
| git: ../bar.git
|
| @@ -184,7 +184,7 @@ dependencies:
|
| ]).scheduleCreate();
|
|
|
| dir(appPath, [
|
| - file('pubspec', '''
|
| + file('pubspec.yaml', '''
|
| dependencies:
|
| foo:
|
| git: ../foo.git
|
|
|