Prechádzať zdrojové kódy

Merge pull request #1479 from jpetazzo/fix-testbindmounts-typo

- Tests: fix typo in TestBindMounts (runContainer called without image)
Guillaume J. Charmes 12 rokov pred
rodič
commit
fd5099c9fe
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      container_test.go

+ 1 - 1
container_test.go

@@ -1174,7 +1174,7 @@ func TestBindMounts(t *testing.T) {
 	readFile(path.Join(tmpDir, "holla"), t) // Will fail if the file doesn't exist
 	readFile(path.Join(tmpDir, "holla"), t) // Will fail if the file doesn't exist
 
 
 	// test mounting to an illegal destination directory
 	// test mounting to an illegal destination directory
-	if _, err := runContainer(r, []string{"-v", fmt.Sprintf("%s:.", tmpDir), "ls", "."}, nil); err == nil {
+	if _, err := runContainer(r, []string{"-v", fmt.Sprintf("%s:.", tmpDir), "_", "ls", "."}, nil); err == nil {
 		t.Fatal("Container bind mounted illegal directory")
 		t.Fatal("Container bind mounted illegal directory")
 	}
 	}
 }
 }