소스 검색

fix TestDaemonNoSpaceLeftOnDeviceError for mips64le

Signed-off-by: wanghuaiqing <wanghuaiqing@loongson.cn>
wanghuaiqing 4 년 전
부모
커밋
0f0c1c04c8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      integration-cli/docker_cli_daemon_test.go

+ 1 - 1
integration-cli/docker_cli_daemon_test.go

@@ -1781,7 +1781,7 @@ func (s *DockerDaemonSuite) TestDaemonNoSpaceLeftOnDeviceError(c *testing.T) {
 	defer s.d.Stop(c)
 
 	// pull a repository large enough to overfill the mounted filesystem
-	pullOut, err := s.d.Cmd("pull", "debian:stretch")
+	pullOut, err := s.d.Cmd("pull", "debian:buster")
 	assert.Assert(c, err != nil, pullOut)
 	assert.Assert(c, strings.Contains(pullOut, "no space left on device"))
 }