From c447fd339a9293ea528ba0c8f4154cf1f953186c Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Wed, 1 Apr 2015 18:06:28 -0700 Subject: [PATCH] TestVolumesFromHasPriority fix race Docker-DCO-1.1-Signed-off-by: Jessie Frazelle (github: jfrazelle) --- integration-cli/docker_api_containers_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_api_containers_test.go b/integration-cli/docker_api_containers_test.go index a85fcbdf6b..02d069f598 100644 --- a/integration-cli/docker_api_containers_test.go +++ b/integration-cli/docker_api_containers_test.go @@ -232,7 +232,7 @@ func TestContainerApiStartVolumesFrom(t *testing.T) { // This is pretty much the same as TestRunApplyVolumesFromBeforeVolumes, except with passing the VolumesFrom and the bind on start func TestVolumesFromHasPriority(t *testing.T) { defer deleteAllContainers() - volName := "voltst" + volName := "voltst2" volPath := "/tmp" if out, _, err := runCommandWithOutput(exec.Command(dockerBinary, "run", "-d", "--name", volName, "-v", volPath, "busybox")); err != nil {