| Index: pkg/http/test/multipart_test.dart
|
| diff --git a/pkg/http/test/multipart_test.dart b/pkg/http/test/multipart_test.dart
|
| index c42b810b3f0a353f4885172da1bc51b9fcd006b7..7467d5f0b31f20e1ad29cb46911acb6706f4e7af 100644
|
| --- a/pkg/http/test/multipart_test.dart
|
| +++ b/pkg/http/test/multipart_test.dart
|
| @@ -216,7 +216,7 @@ void main() {
|
| group('in a temp directory', () {
|
| var tempDir;
|
| setUp(() {
|
| - tempDir = new Directory('').createTempSync();
|
| + tempDir = Directory.systemTemp.createTempSync('http_test_');
|
| });
|
|
|
| tearDown(() => tempDir.deleteSync(recursive: true));
|
|
|