Index: pkg/http/test/utils.dart |
diff --git a/pkg/http/test/utils.dart b/pkg/http/test/utils.dart |
index f93ca253c159254093f0cc7ce99c5c2f61bd9eaf..3797bd1b26d02592b2c25b6017a113390795088c 100644 |
--- a/pkg/http/test/utils.dart |
+++ b/pkg/http/test/utils.dart |
@@ -12,8 +12,6 @@ import 'package:http/src/byte_stream.dart'; |
import 'package:http/src/utils.dart'; |
import 'package:unittest/unittest.dart'; |
-import 'safe_http_server.dart'; |
- |
/// The current server instance. |
HttpServer _server; |
@@ -25,7 +23,7 @@ Uri get dummyUrl => Uri.parse('http://dartlang.org/'); |
/// Starts a new HTTP server. |
Future startServer() { |
- return SafeHttpServer.bind("localhost", 0).then((s) { |
+ return HttpServer.bind("localhost", 0).then((s) { |
_server = s; |
s.listen((request) { |
var path = request.uri.path; |