Browse Source

Merge pull request #26121 from Microsoft/jjh/testattach

Windows: Enable 2 TestAttach* tests
Brian Goff 9 years ago
parent
commit
74bfff9798
1 changed files with 0 additions and 3 deletions
  1. 0 3
      integration-cli/docker_cli_attach_test.go

+ 0 - 3
integration-cli/docker_cli_attach_test.go

@@ -17,8 +17,6 @@ import (
 const attachWait = 5 * time.Second
 
 func (s *DockerSuite) TestAttachMultipleAndRestart(c *check.C) {
-	testRequires(c, DaemonIsLinux)
-
 	endGroup := &sync.WaitGroup{}
 	startGroup := &sync.WaitGroup{}
 	endGroup.Add(3)
@@ -89,7 +87,6 @@ func (s *DockerSuite) TestAttachMultipleAndRestart(c *check.C) {
 }
 
 func (s *DockerSuite) TestAttachTTYWithoutStdin(c *check.C) {
-	testRequires(c, DaemonIsLinux)
 	out, _ := dockerCmd(c, "run", "-d", "-ti", "busybox")
 
 	id := strings.TrimSpace(out)