summaryrefslogtreecommitdiff
path: root/client/volume_inspect_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/volume_inspect_test.go')
-rw-r--r--client/volume_inspect_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/volume_inspect_test.go b/client/volume_inspect_test.go
index 70b82729b8..be88f5f103 100644
--- a/client/volume_inspect_test.go
+++ b/client/volume_inspect_test.go
@@ -76,7 +76,7 @@ func TestVolumeInspect(t *testing.T) {
}),
}
- volume, err := client.VolumeInspect(context.Background(), "volume_id")
+ vol, err := client.VolumeInspect(context.Background(), "volume_id")
assert.NilError(t, err)
- assert.Check(t, is.DeepEqual(expected, volume))
+ assert.Check(t, is.DeepEqual(expected, vol))
}