From 0f0c1c04c8f6ed1c54529c0e660bc363914dcdf9 Mon Sep 17 00:00:00 2001 From: wanghuaiqing Date: Tue, 4 Aug 2020 16:23:55 +0800 Subject: [PATCH] fix TestDaemonNoSpaceLeftOnDeviceError for mips64le Signed-off-by: wanghuaiqing --- integration-cli/docker_cli_daemon_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_daemon_test.go b/integration-cli/docker_cli_daemon_test.go index e89d21934d..c3c28b4c3c 100644 --- a/integration-cli/docker_cli_daemon_test.go +++ b/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")) }