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

Unified Diff: lib/src/util/io.dart

Issue 1187103004: Allow Suites to be added to an Engine over time. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 5 years, 6 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: lib/src/util/io.dart
diff --git a/lib/src/util/io.dart b/lib/src/util/io.dart
index dc28f1ac397dc9d8675ae329001a38bfd4c4e86b..fb2632f62c43f5eae3ac525dc01714fe31b4f8d9 100644
--- a/lib/src/util/io.dart
+++ b/lib/src/util/io.dart
@@ -117,7 +117,7 @@ Future withTempDir(Future fn(String path)) {
/// that are followed by newlines, to ensure that carriage returns aren't
/// doubled up in the output. This can be removed when the issue is fixed in the
/// oldest supported SDk.
-Stream<List<int>> santizeForWindows(Stream<List<int>> input) {
+Stream<List<int>> sanitizeForWindows(Stream<List<int>> input) {
if (!Platform.isWindows) return input;
return input.map((list) {

Powered by Google App Engine
This is Rietveld 408576698