1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #41311 from wanghuaiqing2010/stretch

fix TestDaemonNoSpaceLeftOnDeviceError for mips64le
This commit is contained in:
Akihiro Suda 2020-08-06 15:20:25 +09:00 committed by GitHub
commit 1370072eb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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