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

Unified Diff: pkg/scheduled_test/test/scheduled_process_test.dart

Issue 50073007: fix barback and polymer build warnings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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/scheduled_test/test/scheduled_process_test.dart
diff --git a/pkg/scheduled_test/test/scheduled_process_test.dart b/pkg/scheduled_test/test/scheduled_process_test.dart
index e09c536824ac868bd66ece8420e6ed90f2c1b482..590cbe1db5cc8fe1b5f789d31c26590bba9bfbdb 100644
--- a/pkg/scheduled_test/test/scheduled_process_test.dart
+++ b/pkg/scheduled_test/test/scheduled_process_test.dart
@@ -384,7 +384,7 @@ ScheduledProcess startDartProcess(String script) {
currentSchedule.onComplete.schedule(() {
return tempDir.catchError((_) => null).then((dir) {
- if (dir == null) return;
+ if (dir == null) return null;
return new Directory(dir).delete(recursive: true);
});
}, 'clean up temp dir');
« pkg/scheduled_test/lib/src/mock_clock.dart ('K') | « pkg/scheduled_test/test/descriptor/utils.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698