X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/16f704326f44fd1e5e5e60b936c9b5895d6a6ff8..64c516079154f73da3f2a33a957fa8ae8eb23749:/services/keepstore/status_test.go diff --git a/services/keepstore/status_test.go b/services/keepstore/status_test.go index dc6efb083d..cafe9f72ff 100644 --- a/services/keepstore/status_test.go +++ b/services/keepstore/status_test.go @@ -14,8 +14,8 @@ import ( // getStatusItem("foo","bar","baz") retrieves /status.json, decodes // the response body into resp, and returns resp["foo"]["bar"]["baz"]. -func getStatusItem(keys ...string) interface{} { - resp := IssueRequest(&RequestTester{"/status.json", "", "GET", nil}) +func getStatusItem(h *handler, keys ...string) interface{} { + resp := IssueRequest(h, &RequestTester{"/status.json", "", "GET", nil, ""}) var s interface{} json.NewDecoder(resp.Body).Decode(&s) for _, k := range keys {