summaryrefslogtreecommitdiff
path: root/integration/plugin
diff options
context:
space:
mode:
authorlimeidan <limeidan@loongson.cn>2020-09-14 19:45:09 +0800
committerlimeidan <limeidan@loongson.cn>2020-09-15 10:04:00 +0800
commit2344b3a9e10aab2f63d792f9b72282129399f98d (patch)
tree817674e9c82d6cd2144a2f2a2bd21dd64d463818 /integration/plugin
parente8456cd207323398c0caf32c871e26258cbc40ef (diff)
downloaddocker-2344b3a9e10aab2f63d792f9b72282129399f98d.tar.gz
fix integration test case TestExternalGraphDriver failed in mips arch
Signed-off-by: limeidan <limeidan@loongson.cn>
Diffstat (limited to 'integration/plugin')
-rw-r--r--integration/plugin/graphdriver/external_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/plugin/graphdriver/external_test.go b/integration/plugin/graphdriver/external_test.go
index 4c848aa075..eadcdc8e66 100644
--- a/integration/plugin/graphdriver/external_test.go
+++ b/integration/plugin/graphdriver/external_test.go
@@ -395,12 +395,12 @@ func testGraphDriverPull(c client.APIClient, d *daemon.Daemon) func(*testing.T)
defer d.Stop(t)
ctx := context.Background()
- r, err := c.ImagePull(ctx, "busybox:latest@sha256:bbc3a03235220b170ba48a157dd097dd1379299370e1ed99ce976df0355d24f0", types.ImagePullOptions{})
+ r, err := c.ImagePull(ctx, "busybox:latest@sha256:95cf004f559831017cdf4628aaf1bb30133677be8702a8c5f2994629f637a209", types.ImagePullOptions{})
assert.NilError(t, err)
_, err = io.Copy(ioutil.Discard, r)
assert.NilError(t, err)
- container.Run(ctx, t, c, container.WithImage("busybox:latest@sha256:bbc3a03235220b170ba48a157dd097dd1379299370e1ed99ce976df0355d24f0"))
+ container.Run(ctx, t, c, container.WithImage("busybox:latest@sha256:95cf004f559831017cdf4628aaf1bb30133677be8702a8c5f2994629f637a209"))
}
}