Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Unified Diff: utils/tests/pub/pub_tests.dart

Issue 10174029: Use YAML as the format for the pubspec file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« utils/pub/package.dart ('K') | « utils/pub/pub.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..210a8b379fa1c695820423a3e6c4391a6df537c1 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', '- foo')
Bob Nystrom 2012/04/25 22:59:01 Now that we have a real format, I would put the de
nweiz 2012/04/25 23:05:14 Done.
]),
args: ['update'],
expectedPackageDir: [
@@ -84,14 +84,14 @@ updateCommand() {
cache: [
dir('foo', [
file('foo.dart', 'main() => "foo";'),
- file('pubspec', 'bar')
+ file('pubspec', '- bar')
]),
dir('bar', [
file('bar.dart', 'main() => "bar";'),
])
],
app: dir('myapp', [
- file('pubspec', 'foo')
+ file('pubspec', '- foo')
]),
args: ['update'],
expectedPackageDir: [
« utils/pub/package.dart ('K') | « utils/pub/pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698