integration-cli: remove deprecated buildImageSuccessfully utility

This was deprecated in 50c4475df6, which
introduced the cli test-utils package.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-10-05 17:25:15 +02:00
parent f739c61c69
commit 288b9f033b
22 changed files with 239 additions and 245 deletions

View File

@@ -471,7 +471,7 @@ func (s *DockerCLIVolumeSuite) TestDuplicateMountpointsForVolumesFrom(c *testing
testRequires(c, DaemonIsLinux)
const imgName = "vimage"
buildImageSuccessfully(c, imgName, build.WithDockerfile(`
cli.BuildCmd(c, imgName, build.WithDockerfile(`
FROM busybox
VOLUME ["/tmp/data"]`))
@@ -512,7 +512,7 @@ func (s *DockerCLIVolumeSuite) TestDuplicateMountpointsForVolumesFromAndBind(c *
testRequires(c, DaemonIsLinux)
const imgName = "vimage"
buildImageSuccessfully(c, imgName, build.WithDockerfile(`
cli.BuildCmd(c, imgName, build.WithDockerfile(`
FROM busybox
VOLUME ["/tmp/data"]`))
@@ -554,7 +554,7 @@ func (s *DockerCLIVolumeSuite) TestDuplicateMountpointsForVolumesFromAndMounts(c
testRequires(c, testEnv.IsLocalDaemon, DaemonIsLinux)
const imgName = "vimage"
buildImageSuccessfully(c, imgName, build.WithDockerfile(`
cli.BuildCmd(c, imgName, build.WithDockerfile(`
FROM busybox
VOLUME ["/tmp/data"]`))