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

Unified Diff: sdk/lib/_internal/pub_generated/test/get/git/check_out_revision_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
Index: sdk/lib/_internal/pub_generated/test/get/git/check_out_revision_test.dart
diff --git a/sdk/lib/_internal/pub/test/get/git/check_out_revision_test.dart b/sdk/lib/_internal/pub_generated/test/get/git/check_out_revision_test.dart
similarity index 56%
copy from sdk/lib/_internal/pub/test/get/git/check_out_revision_test.dart
copy to sdk/lib/_internal/pub_generated/test/get/git/check_out_revision_test.dart
index bf1851ef00a8cb5eef204401806a349e2db7cc0b..3f65f8df2207ecba66ecd1cfa9fb456897d14c0c 100644
--- a/sdk/lib/_internal/pub/test/get/git/check_out_revision_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/get/git/check_out_revision_test.dart
@@ -12,28 +12,28 @@ main() {
integration('checks out a package at a specific revision from Git', () {
ensureGit();
- var repo = d.git('foo.git', [
- d.libDir('foo', 'foo 1'),
- d.libPubspec('foo', '1.0.0')
- ]);
+ var repo =
+ d.git('foo.git', [d.libDir('foo', 'foo 1'), d.libPubspec('foo', '1.0.0')]);
repo.create();
var commit = repo.revParse('HEAD');
- d.git('foo.git', [
- d.libDir('foo', 'foo 2'),
- d.libPubspec('foo', '1.0.0')
- ]).commit();
+ d.git(
+ 'foo.git',
+ [d.libDir('foo', 'foo 2'), d.libPubspec('foo', '1.0.0')]).commit();
d.appDir({
- "foo": {"git": {"url": "../foo.git", "ref": commit}}
+ "foo": {
+ "git": {
+ "url": "../foo.git",
+ "ref": commit
+ }
+ }
}).create();
pubGet();
- d.dir(packagesPath, [
- d.dir('foo', [
- d.file('foo.dart', 'main() => "foo 1";')
- ])
- ]).validate();
+ d.dir(
+ packagesPath,
+ [d.dir('foo', [d.file('foo.dart', 'main() => "foo 1";')])]).validate();
});
}

Powered by Google App Engine
This is Rietveld 408576698