```clj (str (uri/map->URI {:scheme "http" :host "host" :path "path"})) ;=> "http://hostpath" ``` The `/` slash being missing between `host` and `path` is unexpected. I would have expected this to render as `http://host/path` instead.