client: refactor ListOptions to VolumeListOptions

Signed-off-by: Austin Vazquez <austin.vazquez@docker.com>
This commit is contained in:
Austin Vazquez
2025-08-21 21:47:59 -05:00
parent c48585f104
commit ee22a62dd5
15 changed files with 18 additions and 18 deletions

View File

@@ -49,7 +49,7 @@ func TestVolumesCreateAndList(t *testing.T) {
}
assert.Check(t, is.DeepEqual(vol, expected, cmpopts.EquateEmpty()))
volList, err := apiClient.VolumeList(ctx, client.ListOptions{})
volList, err := apiClient.VolumeList(ctx, client.VolumeListOptions{})
assert.NilError(t, err)
assert.Assert(t, len(volList.Volumes) > 0)