| Index: utils/tests/pub/pub_tests.dart
|
| diff --git a/utils/tests/pub/pub_tests.dart b/utils/tests/pub/pub_tests.dart
|
| index 91e95d4d4a4bd33aeeb0b69826a8e59f8ba6952a..55c93c45191cc7fe2b7b89f9def8bd30e1a6f211 100644
|
| --- a/utils/tests/pub/pub_tests.dart
|
| +++ b/utils/tests/pub/pub_tests.dart
|
| @@ -70,7 +70,7 @@ updateCommand() {
|
| ])
|
| ],
|
| app: dir('myapp', [
|
| - file('pubspec', 'foo')
|
| + file('pubspec', 'dependencies:\n- foo')
|
| ]),
|
| args: ['update'],
|
| expectedPackageDir: [
|
| @@ -84,14 +84,14 @@ updateCommand() {
|
| cache: [
|
| dir('foo', [
|
| file('foo.dart', 'main() => "foo";'),
|
| - file('pubspec', 'bar')
|
| + file('pubspec', 'dependencies:\n- bar')
|
| ]),
|
| dir('bar', [
|
| file('bar.dart', 'main() => "bar";'),
|
| ])
|
| ],
|
| app: dir('myapp', [
|
| - file('pubspec', 'foo')
|
| + file('pubspec', 'dependencies:\n- foo')
|
| ]),
|
| args: ['update'],
|
| expectedPackageDir: [
|
|
|