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

Unified Diff: sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_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/global/activate/activate_git_after_hosted_test.dart
diff --git a/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart b/sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
similarity index 54%
copy from sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
copy to sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
index e524cbf0d65837881b80c5d761931f18cb5242fa..6be9b071ab1488b5e7f8e6ba38e6d9ba9d1aafaf 100644
--- a/sdk/lib/_internal/pub/test/global/activate/activate_git_after_hosted_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/global/activate/activate_git_after_hosted_test.dart
@@ -13,34 +13,32 @@ main() {
ensureGit();
servePackages((builder) {
- builder.serve("foo", "1.0.0", contents: [
- d.dir("bin", [
- d.file("foo.dart", "main(args) => print('hosted');")
- ])
- ]);
+ builder.serve(
+ "foo",
+ "1.0.0",
+ contents: [
+ d.dir("bin", [d.file("foo.dart", "main(args) => print('hosted');")])]);
});
- d.git('foo.git', [
- d.libPubspec("foo", "1.0.0"),
- d.dir("bin", [
- d.file("foo.dart", "main() => print('git');")
- ])
- ]).create();
+ d.git(
+ 'foo.git',
+ [
+ d.libPubspec("foo", "1.0.0"),
+ d.dir("bin", [d.file("foo.dart", "main() => print('git');")])]).create();
schedulePub(args: ["global", "activate", "foo"]);
- schedulePub(args: ["global", "activate", "-sgit", "../foo.git"],
+ schedulePub(
+ args: ["global", "activate", "-sgit", "../foo.git"],
output: allOf(
startsWith(
'Package foo is currently active at version 1.0.0.\n'
- 'Resolving dependencies...\n'
- '+ foo 1.0.0 from git ../foo.git at '),
+ 'Resolving dependencies...\n' '+ foo 1.0.0 from git ../foo.git at '),
// Specific revision number goes here.
- endsWith(
- 'Precompiling executables...\n'
- 'Loading source assets...\n'
- 'Precompiled foo:foo.\n'
- 'Activated foo 1.0.0 from Git repository "../foo.git".')));
+ endsWith(
+ 'Precompiling executables...\n' 'Loading source assets...\n'
+ 'Precompiled foo:foo.\n'
+ 'Activated foo 1.0.0 from Git repository "../foo.git".')));
// Should now run the git one.
var pub = pubRun(global: true, args: ["foo"]);

Powered by Google App Engine
This is Rietveld 408576698