Browse code

TestPsGroupPortRange: allocate less ports

Signed-off-by: Antonio Murdaca <runcom@redhat.com>

Antonio Murdaca authored on 2016/05/17 19:23:37
Showing 1 changed files
... ...
@@ -501,7 +501,7 @@ func (s *DockerSuite) TestPsLinkedWithNoTrunc(c *check.C) {
501 501
 func (s *DockerSuite) TestPsGroupPortRange(c *check.C) {
502 502
 	// Problematic on Windows as it doesn't support port ranges as of Jan 2016
503 503
 	testRequires(c, DaemonIsLinux)
504
-	portRange := "3800-3900"
504
+	portRange := "3850-3900"
505 505
 	dockerCmd(c, "run", "-d", "--name", "porttest", "-p", portRange+":"+portRange, "busybox", "top")
506 506
 
507 507
 	out, _ := dockerCmd(c, "ps")