Add newline for PUT response

This commit is contained in:
andreimarcu 2016-07-22 18:15:44 -07:00
parent 1e1f28658d
commit 81a1513809
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"crypto/tls"
"encoding/json"
"fmt"
"mime/multipart"
"net/http"
"net/http/httptest"
@ -611,7 +612,7 @@ func TestPutUpload(t *testing.T) {
mux.ServeHTTP(w, req)
if w.Body.String() != Config.siteURL+filename {
if w.Body.String() != fmt.Sprintf("%s\n", Config.siteURL+filename) {
t.Fatal("Response was not expected URL")
}
}

View File

@ -132,7 +132,7 @@ func uploadPutHandler(c web.C, w http.ResponseWriter, r *http.Request) {
return
}
fmt.Fprintf(w, getSiteURL(r)+upload.Filename)
fmt.Fprintf(w, "%s\n", getSiteURL(r)+upload.Filename)
}
}