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

Unified Diff: pkg/polymer/test/compiler_test.dart

Issue 23445009: Prune the old deploy code. This CL does a few changes: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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: pkg/polymer/test/compiler_test.dart
diff --git a/pkg/polymer/test/compiler_test.dart b/pkg/polymer/test/compiler_test.dart
index d5d47ba19a0945fb5d32fb1a24f287d597574e1c..51d8b6784d0487c20b5fc683d2b06295486f8119 100644
--- a/pkg/polymer/test/compiler_test.dart
+++ b/pkg/polymer/test/compiler_test.dart
@@ -39,18 +39,6 @@ main() {
'foo.html': 1,
'bar.html': 1
}), reason: 'Actual:\n ${fs.readCount}');
-
- var outputs = compiler.output.map((o) => o.path);
- expect(outputs, equals([
- 'foo.html.dart',
- 'foo.html.dart.map',
- 'bar.html.dart',
- 'bar.html.dart.map',
- 'index.html.dart',
- 'index.html.dart.map',
- 'index.html_bootstrap.dart',
- 'index.html',
- ].map((p) => path.join('out', p))));
}));
});
@@ -75,9 +63,6 @@ main() {
MockFileSystem fs = compiler.fileSystem;
expect(fs.readCount, { 'index.html': 1, 'notfound.dart': 1 });
-
- var outputs = compiler.output.map((o) => o.path.toString());
- expect(outputs, []);
}));
});
@@ -102,9 +87,6 @@ main() {
MockFileSystem fs = compiler.fileSystem;
expect(fs.readCount, { 'index.html': 1, 'notfound.html': 1 });
-
- var outputs = compiler.output.map((o) => o.path.toString());
- expect(outputs, []);
}));
});
@@ -132,9 +114,6 @@ main() {
MockFileSystem fs = compiler.fileSystem;
expect(fs.readCount,
{ 'index.html': 1, 'foo.html': 1, 'notfound.dart': 1 });
-
- var outputs = compiler.output.map((o) => o.path.toString());
- expect(outputs, []);
}));
});
});

Powered by Google App Engine
This is Rietveld 408576698