Explorar o código

fix http test on osx

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Yifan Zhang %!s(int64=12) %!d(string=hai) anos
pai
achega
99274d9ddb
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      dulwich/tests/compat/test_client.py

+ 2 - 0
dulwich/tests/compat/test_client.py

@@ -32,6 +32,7 @@ import tarfile
 import tempfile
 import threading
 import urllib
+from socket import gethostname
 
 from dulwich import (
     client,
@@ -425,6 +426,7 @@ class HTTPGitServer(BaseHTTPServer.HTTPServer):
     def __init__(self, server_address, root_path):
         BaseHTTPServer.HTTPServer.__init__(self, server_address, GitHTTPRequestHandler)
         self.root_path = root_path
+        self.server_name = "localhost"
 
     def get_url(self):
         return 'http://%s:%s/' % (self.server_name, self.server_port)