| Index: sdk/lib/_internal/pub/test/test_pub.dart
|
| diff --git a/sdk/lib/_internal/pub/test/test_pub.dart b/sdk/lib/_internal/pub/test/test_pub.dart
|
| index 22c12b25f6b2adaa06f5e5315ba4c96af39ba37c..8a7871386d517428bd943f12d0a630f3aa958ea6 100644
|
| --- a/sdk/lib/_internal/pub/test/test_pub.dart
|
| +++ b/sdk/lib/_internal/pub/test/test_pub.dart
|
| @@ -31,7 +31,6 @@ import '../lib/src/io.dart';
|
| import '../lib/src/lock_file.dart';
|
| import '../lib/src/log.dart' as log;
|
| import '../lib/src/package.dart';
|
| -import '../lib/src/safe_http_server.dart';
|
| import '../lib/src/source/hosted.dart';
|
| import '../lib/src/source/path.dart';
|
| import '../lib/src/source_registry.dart';
|
| @@ -103,7 +102,7 @@ void serve([List<d.Descriptor> contents]) {
|
|
|
| schedule(() {
|
| return _closeServer().then((_) {
|
| - return SafeHttpServer.bind("127.0.0.1", 0).then((server) {
|
| + return HttpServer.bind("127.0.0.1", 0).then((server) {
|
| _server = server;
|
| server.listen((request) {
|
| currentSchedule.heartbeat();
|
|
|