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

Unified Diff: sdk/lib/_internal/pub/test/global/activate/constraint_test.dart

Issue 494943002: Don't load assets unnecessarily when precompiling executables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 years, 4 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/test/global/activate/constraint_test.dart
diff --git a/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart b/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
index b5073b18a3a51793134148100d64135a64f9d03d..714e06c57e8b6bf19d2f711fa1665ea78356dc4a 100644
--- a/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
+++ b/sdk/lib/_internal/pub/test/global/activate/constraint_test.dart
@@ -10,12 +10,12 @@ import '../../test_pub.dart';
main() {
initConfig();
integration('chooses the highest version that matches the constraint', () {
- servePackages([
- packageMap("foo", "1.0.0"),
- packageMap("foo", "1.0.1"),
- packageMap("foo", "1.1.0"),
- packageMap("foo", "1.2.3")
- ]);
+ servePackages((builder) {
+ builder.serve("foo", "1.0.0");
+ builder.serve("foo", "1.0.1");
+ builder.serve("foo", "1.1.0");
+ builder.serve("foo", "1.2.3");
+ });
schedulePub(args: ["global", "activate", "foo", "<1.1.0"]);

Powered by Google App Engine
This is Rietveld 408576698