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

Unified Diff: sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart

Issue 488323002: Make servePackages's contents argument saner. (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/snapshot/prints_errors_for_broken_snapshots_test.dart
diff --git a/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart b/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
index 1c8af8f1d6871bdfa091b247f97ef4ab760649d9..b398df7bb57aefe47f42ae6ff3232570b08f5e2d 100644
--- a/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
+++ b/sdk/lib/_internal/pub/test/snapshot/prints_errors_for_broken_snapshots_test.dart
@@ -13,15 +13,20 @@ import '../test_pub.dart';
main() {
initConfig();
integration("prints errors for broken snapshot compilation", () {
- servePackages([
- packageMap("foo", "1.2.3"),
- packageMap("bar", "1.2.3")
- ], contents: [
- d.dir("bin", [
- d.file("hello.dart", "void main() { no closing brace"),
- d.file("goodbye.dart", "void main() { no closing brace"),
- ])
- ]);
+ servePackages((builder) {
+ builder.serve("foo", "1.2.3", contents: [
+ d.dir("bin", [
+ d.file("hello.dart", "void main() { no closing brace"),
+ d.file("goodbye.dart", "void main() { no closing brace"),
+ ])
+ ]);
+ builder.serve("bar", "1.2.3", contents: [
+ d.dir("bin", [
+ d.file("hello.dart", "void main() { no closing brace"),
+ d.file("goodbye.dart", "void main() { no closing brace"),
+ ])
+ ]);
+ });
d.appDir({"foo": "1.2.3", "bar": "1.2.3"}).create();

Powered by Google App Engine
This is Rietveld 408576698