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

Unified Diff: sdk/lib/_internal/pub_generated/test/serve/gets_first_if_git_url_changed_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/serve/gets_first_if_git_url_changed_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/gets_first_if_git_url_changed_test.dart b/sdk/lib/_internal/pub_generated/test/serve/gets_first_if_git_url_changed_test.dart
similarity index 56%
copy from sdk/lib/_internal/pub/test/serve/gets_first_if_git_url_changed_test.dart
copy to sdk/lib/_internal/pub_generated/test/serve/gets_first_if_git_url_changed_test.dart
index 71e98adbcca97b20aea68b95d75374df795172bf..c41af7d2970f6d8b732eb264a9c9cad975b2499a 100644
--- a/sdk/lib/_internal/pub/test/serve/gets_first_if_git_url_changed_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/serve/gets_first_if_git_url_changed_test.dart
@@ -10,27 +10,31 @@ import 'utils.dart';
main() {
initConfig();
- integration("gets first if a git dependency's url doesn't match the one in "
- "the lock file", () {
- d.git("foo-before.git", [
- d.libPubspec("foo", "1.0.0"),
- d.libDir("foo", "before")
- ]).create();
-
- d.git("foo-after.git", [
- d.libPubspec("foo", "1.0.0"),
- d.libDir("foo", "after")
- ]).create();
+ integration(
+ "gets first if a git dependency's url doesn't match the one in "
+ "the lock file",
+ () {
+ d.git(
+ "foo-before.git",
+ [d.libPubspec("foo", "1.0.0"), d.libDir("foo", "before")]).create();
+
+ d.git(
+ "foo-after.git",
+ [d.libPubspec("foo", "1.0.0"), d.libDir("foo", "after")]).create();
d.appDir({
- "foo": {"git": "../foo-before.git"}
+ "foo": {
+ "git": "../foo-before.git"
+ }
}).create();
pubGet();
// Change the path in the pubspec.
d.appDir({
- "foo": {"git": "../foo-after.git"}
+ "foo": {
+ "git": "../foo-after.git"
+ }
}).create();
pubServe(shouldGetFirst: true);

Powered by Google App Engine
This is Rietveld 408576698