Преглед изворни кода

Fixed: ImagePull in runtime test

shin- пре 12 година
родитељ
комит
1c6af604e8
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      runtime_test.go

+ 1 - 1
runtime_test.go

@@ -101,7 +101,7 @@ func init() {
 	// If the unit test is not found, try to download it.
 	if img, err := globalRuntime.repositories.LookupImage(unitTestImageName); err != nil || img.ID != unitTestImageID {
 		// Retrieve the Image
-		if err := srv.ImagePull(unitTestImageName, "", os.Stdout, utils.NewStreamFormatter(false), nil, true); err != nil {
+		if err := srv.ImagePull(unitTestImageName, "", os.Stdout, utils.NewStreamFormatter(false), nil, nil, true); err != nil {
 			panic(err)
 		}
 	}