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

Unified Diff: pkg/docgen/test/generate_json_test.dart

Issue 196133023: pkg/docgen: more cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
« pkg/docgen/lib/docgen.dart ('K') | « pkg/docgen/lib/src/io.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/test/generate_json_test.dart
diff --git a/pkg/docgen/test/generate_json_test.dart b/pkg/docgen/test/generate_json_test.dart
index 66b99ba2c390b0bf31a2ff3f804d55a6d1395699..afb32feea5eabcdeaa4a5e4e5cdffd10a0fe5172 100644
--- a/pkg/docgen/test/generate_json_test.dart
+++ b/pkg/docgen/test/generate_json_test.dart
@@ -32,7 +32,7 @@ void main() {
schedule(() {
var codeDir = getMultiLibraryCodePath();
expect(FileSystemEntity.isDirectorySync(codeDir), isTrue);
- return dg.docgen(['$codeDir/'], out: p.join(d.defaultRoot, 'docs'));
+ return dg.docgen([codeDir], out: p.join(d.defaultRoot, 'docs'));
Emily Fortuna 2014/03/17 17:54:31 have you actually run this test? Dart2js throws an
kevmoo 2014/03/17 20:13:03 Tests run fine. Do these tests run in dart2js?
});
d.dir('docs', [
@@ -55,7 +55,7 @@ void main() {
schedule(() {
var codeDir = getMultiLibraryCodePath();
expect(FileSystemEntity.isDirectorySync(codeDir), isTrue);
- return dg.docgen(['$codeDir/'], out: p.join(d.defaultRoot, 'docs'));
+ return dg.docgen([codeDir], out: p.join(d.defaultRoot, 'docs'));
});
schedule(() {
« pkg/docgen/lib/docgen.dart ('K') | « pkg/docgen/lib/src/io.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698