Tests: updated test for spaces in URI to expect HTTP 400.
diff --git a/http_uri.t b/http_uri.t
index 0345536..4df57f9 100644
--- a/http_uri.t
+++ b/http_uri.t
@@ -76,6 +76,11 @@
 like(http_get('http://localhost:8080?args#frag'), qr!x / x.*y args y!ms,
 	'port args and frag');
 
-like(http_get('/ /'), qr!x / / x!, 'space');
+TODO: {
+local $TODO = 'not yet';
+
+like(http_get('/ /'), qr/400 Bad/, 'space');
+
+}
 
 ###############################################################################