Browse code

fix TestDaemonNoSpaceLeftOnDeviceError for mips64le

Signed-off-by: wanghuaiqing <wanghuaiqing@loongson.cn>

wanghuaiqing authored on 2020/08/04 17:23:55
Showing 1 changed files
... ...
@@ -1781,7 +1781,7 @@ func (s *DockerDaemonSuite) TestDaemonNoSpaceLeftOnDeviceError(c *testing.T) {
1781 1781
 	defer s.d.Stop(c)
1782 1782
 
1783 1783
 	// pull a repository large enough to overfill the mounted filesystem
1784
-	pullOut, err := s.d.Cmd("pull", "debian:stretch")
1784
+	pullOut, err := s.d.Cmd("pull", "debian:buster")
1785 1785
 	assert.Assert(c, err != nil, pullOut)
1786 1786
 	assert.Assert(c, strings.Contains(pullOut, "no space left on device"))
1787 1787
 }