Fix statistics test
This commit is contained in:
parent
392a9d7fc3
commit
ee13d9f0e9
|
@ -31,7 +31,7 @@ func TestViewerPageGET(t *testing.T) {
|
|||
}
|
||||
|
||||
// Test GET request on statistics page
|
||||
r, _ = http.NewRequest("GET", "/", nil)
|
||||
r, _ = http.NewRequest("GET", "/_stats/demo/", nil)
|
||||
w = httptest.NewRecorder()
|
||||
http.HandlerFunc(statisticsHandler).ServeHTTP(w, r)
|
||||
if w.Code != http.StatusOK {
|
||||
|
|
|
@ -43,7 +43,7 @@ func TestHTTPServe(t *testing.T) {
|
|||
t.Errorf("Viewer page returned %v != %v on GET", resp.StatusCode, http.StatusOK)
|
||||
}
|
||||
|
||||
resp, err = http.Get("http://localhost:8081/_stats")
|
||||
resp, err = http.Get("http://localhost:8081/_stats/demo/")
|
||||
if err != nil {
|
||||
t.Error("Error while getting /_stats:", err)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue