| 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 b855e02ae3cd68af37d620a7e41c8eb30d28ff4c..33cfa7c7f7bdbc68f632d6210db4c5944af3e210 100644
|
| --- a/pkg/scheduled_test/test/scheduled_process_test.dart
|
| +++ b/pkg/scheduled_test/test/scheduled_process_test.dart
|
| @@ -5,6 +5,7 @@
|
| library scheduled_process_test;
|
|
|
| import 'dart:async';
|
| +import 'dart:convert';
|
| import 'dart:io';
|
|
|
| import 'package:path/path.dart' as path;
|
| @@ -367,11 +368,12 @@ ScheduledProcess startDartProcess(String script) {
|
| var utilsPath = path.absolute(path.join(Platform.script, 'utils.dart'));
|
| return new File(path.join(dir, 'test.dart')).writeAsString('''
|
| import 'dart:async';
|
| + import 'dart:convert';
|
| import 'dart:io';
|
|
|
| var stdinLines = stdin
|
| .transform(new StringDecoder())
|
| - .transform(new LineTransformer());
|
| + .transform(new LineSplitter());
|
|
|
| void main() {
|
| $script
|
|
|