From 88ff2baa96c8bcfe5406ba1e5edf51fef2bbbd3e Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Thu, 17 Sep 2015 15:26:10 -0700 Subject: [PATCH] fix race in tests Signed-off-by: Victor Vieux --- test/integration/port-filters.bats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/port-filters.bats b/test/integration/port-filters.bats index 5997addaee..8044ba6730 100644 --- a/test/integration/port-filters.bats +++ b/test/integration/port-filters.bats @@ -32,13 +32,13 @@ function teardown() { start_docker_with_busybox 2 swarm_manage - run docker_swarm run -d --expose=80 -p 80:80 busybox sh + run docker_swarm run --expose=80 -p 80:80 busybox echo 1 [ "$status" -eq 0 ] - run docker_swarm run -d --expose=80 -p 80:80 busybox sh + run docker_swarm run --expose=80 -p 80:80 busybox echo 2 [ "$status" -eq 0 ] # When trying to start the 3rd one, it should be error finding port 80. - run docker_swarm run -d --expose=80 -p 80:80 busybox sh + run docker_swarm run --expose=80 -p 80:80 busybox echo 3 [ "$status" -ne 0 ] [[ "${lines[0]}" == *"unable to find a node with port 80 available"* ]]