diff --git a/lib/py/test/test_sslsocket.py b/lib/py/test/test_sslsocket.py
index f1344e57d2..598c174dcf 100644
--- a/lib/py/test/test_sslsocket.py
+++ b/lib/py/test/test_sslsocket.py
@@ -213,6 +213,7 @@ def test_unix_domain_socket(self):
return
fd, path = tempfile.mkstemp()
os.close(fd)
+ os.unlink(path)
try:
server = self._server_socket(unix_socket=path, keyfile=SERVER_KEY,
certfile=SERVER_CERT)
self._assert_connection_success(server, path=path,
cert_reqs=ssl.CERT_NONE)
With regards,
Apache Git Services