1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

integration-cli: fix minor linting issues

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-08-05 17:07:43 +02:00
parent 67e4d36e46
commit 417eac47a0
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
2 changed files with 1 additions and 2 deletions

View file

@ -162,7 +162,6 @@ func newVolumePlugin(c *testing.T, name string) *volumePlugin {
v.Mountpoint = hostVolumePath(pr.Name)
send(w, map[string]vol{"Volume": v})
return
})
mux.HandleFunc("/VolumeDriver.Remove", func(w http.ResponseWriter, r *http.Request) {

View file

@ -202,7 +202,7 @@ func (s *DockerSuite) TestImagesFilterSpaceTrimCase(c *testing.T) {
"dangling = true",
}
imageListings := make([][]string, 5, 5)
imageListings := make([][]string, 5)
for idx, filter := range filters {
out, _ := dockerCmd(c, "images", "-q", "-f", filter)
listing := strings.Split(out, "\n")