| Index: tests/standalone/io/file_read_encoded_test.dart
|
| diff --git a/tests/standalone/io/file_read_encoded_test.dart b/tests/standalone/io/file_read_encoded_test.dart
|
| index 23715c041245b14350861dbdb58c18277df1b936..a2016f91e987ab3dd62241568182b259396563d4 100644
|
| --- a/tests/standalone/io/file_read_encoded_test.dart
|
| +++ b/tests/standalone/io/file_read_encoded_test.dart
|
| @@ -7,7 +7,7 @@ import "package:async_helper/async_helper.dart";
|
| import 'dart:io';
|
|
|
| void testReadAsString() {
|
| - var tmp = new Directory('').createTempSync();
|
| + var tmp = Directory.createSystemTempSync('dart_file_read_encoded');
|
|
|
| var file = new File('${tmp.path}/file');
|
| file.createSync();
|
| @@ -26,7 +26,7 @@ void testReadAsString() {
|
| }
|
|
|
| void testReadAsLines() {
|
| - var tmp = new Directory('').createTempSync();
|
| + var tmp = Directory.createSystemTempSync('dart_file_read_encoded');
|
|
|
| var file = new File('${tmp.path}/file');
|
| file.createSync();
|
|
|