17698: Update PutBlock comment.
[arvados.git] / services / keepstore / status_test.go
index 7bff2584e5ae30529c7fb79dcccc6c95156521e2..cafe9f72ff0e0eaf3ec7b1da842c5ac083ca4028 100644 (file)
@@ -15,7 +15,7 @@ import (
 // getStatusItem("foo","bar","baz") retrieves /status.json, decodes
 // the response body into resp, and returns resp["foo"]["bar"]["baz"].
 func getStatusItem(h *handler, keys ...string) interface{} {
-       resp := IssueRequest(h, &RequestTester{"/status.json", "", "GET", nil})
+       resp := IssueRequest(h, &RequestTester{"/status.json", "", "GET", nil, ""})
        var s interface{}
        json.NewDecoder(resp.Body).Decode(&s)
        for _, k := range keys {