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

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

Powered by Google App Engine
This is Rietveld 408576698