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

Unified Diff: tools/testing/dart/test_progress.dart

Issue 2264003002: Fix type error in test.dart script. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « tools/test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_progress.dart
diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
index 14910fa70c31b7fae58c9d23b194e357243264ea..f09372abf00a9518ce13dae2a00d1283cba8245f 100644
--- a/tools/testing/dart/test_progress.dart
+++ b/tools/testing/dart/test_progress.dart
@@ -488,7 +488,7 @@ class LeftOverTempDirPrinter extends EventListener {
}
}
- static Stream<Directory> getLeftOverTemporaryDirectories() {
+ static Stream<FileSystemEntity> getLeftOverTemporaryDirectories() {
var regExp = _getTemporaryDirectoryRegexp();
return Directory.systemTemp.list().where((FileSystemEntity fse) {
if (fse is Directory) {
« no previous file with comments | « tools/test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698