X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b17f04b7797eda5a5d888264f7d480d762a9966f..911abf131639401b2ccfd23a6bc3ec983f7ed8f4:/services/keepstore/mounts_test.go diff --git a/services/keepstore/mounts_test.go b/services/keepstore/mounts_test.go index 66a212456d..0f7b6e9735 100644 --- a/services/keepstore/mounts_test.go +++ b/services/keepstore/mounts_test.go @@ -46,11 +46,11 @@ func (s *MountsSuite) TestMounts(c *check.C) { resp := s.call("GET", "/mounts", "", nil) c.Check(resp.Code, check.Equals, http.StatusOK) var mntList []struct { - UUID string - DeviceID string - ReadOnly bool - Replication int - StorageClasses []string + UUID string `json:"uuid"` + DeviceID string `json:"device_id"` + ReadOnly bool `json:"read_only"` + Replication int `json:"replication"` + StorageClasses []string `json:"storage_classes"` } err := json.Unmarshal(resp.Body.Bytes(), &mntList) c.Assert(err, check.IsNil)