From 5e94ab9a37a94db1a66d2db25d16a87d8e0a997a Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 19 Oct 2015 15:38:14 -0400 Subject: Change tests to be more self contained Use custom configuration and databases, do not rely on in-tree data. Signed-off-by: Simo Sorce Reviewed-by: Christian Heimes --- custodia/httpd/server.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'custodia/httpd/server.py') diff --git a/custodia/httpd/server.py b/custodia/httpd/server.py index c1df0cb..b1440ab 100644 --- a/custodia/httpd/server.py +++ b/custodia/httpd/server.py @@ -377,8 +377,6 @@ class HTTPServer(object): if url.scheme == 'http+unix': # Unix socket serverclass = ForkingUnixHTTPServer - if address[0] != '/': - raise ValueError('Must use absolute unix socket name') if os.path.exists(address): os.remove(address) elif url.scheme == 'http': -- cgit