diff --git a/integration-cli/docker_cli_daemon_test.go b/integration-cli/docker_cli_daemon_test.go index 96c0d0a906..a51f2d0419 100644 --- a/integration-cli/docker_cli_daemon_test.go +++ b/integration-cli/docker_cli_daemon_test.go @@ -2690,14 +2690,14 @@ func (s *DockerDaemonSuite) TestExecWithUserAfterLiveRestore(c *testing.T) { func (s *DockerDaemonSuite) TestRemoveContainerAfterLiveRestore(c *testing.T) { testRequires(c, DaemonIsLinux, overlayFSSupported, testEnv.IsLocalDaemon) - s.d.StartWithBusybox(c, "--live-restore", "--storage-driver", "overlay") + s.d.StartWithBusybox(c, "--live-restore", "--storage-driver", "overlay2") out, err := s.d.Cmd("run", "-d", "--name=top", "busybox", "top") assert.NilError(c, err, "Output: %s", out) s.d.WaitRun("top") // restart daemon. - s.d.Restart(c, "--live-restore", "--storage-driver", "overlay") + s.d.Restart(c, "--live-restore", "--storage-driver", "overlay2") out, err = s.d.Cmd("stop", "top") assert.NilError(c, err, "Output: %s", out)