Revert "Try to fix mysterious test failures on Travis"

This reverts commit 71fe85df9b.

See https://github.com/PuerkitoBio/purell/pull/5
for the cause of the mysterious `go test -v ./...` failure.
This commit is contained in:
Anthony Fok 2015-01-22 17:46:29 -07:00
parent 71fe85df9b
commit 60c6faa317
1 changed files with 1 additions and 1 deletions

View 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)