Revert "Try to fix mysterious test failures on Travis"
authorAnthony Fok <foka@debian.org>
Fri, 23 Jan 2015 00:46:29 +0000 (17:46 -0700)
committerAnthony Fok <foka@debian.org>
Fri, 23 Jan 2015 00:46:47 +0000 (17:46 -0700)
This reverts commit 71fe85df9b7193f790fbb5e3af415b176fdb6a4f.

See https://github.com/PuerkitoBio/purell/pull/5
for the cause of the mysterious `go test -v ./...` failure.

commands/server.go

index 6ce679c6e58ef53c11b6528275d3d0d975a0ae31..98ea60f4e5909425b82ba87d3f8bb213b902b3e2 100644 (file)
@@ -146,7 +146,7 @@ func fixUrl(s string) (string, error) {
        if !strings.HasPrefix(s, "http://") && !strings.HasPrefix(s, "https://") {
                s = "http://" + s
        }
-       if len(s) > 0 && !strings.HasSuffix(s, "/") {
+       if !strings.HasSuffix(s, "/") {
                s = s + "/"
        }
        u, err := url.Parse(s)