summaryrefslogtreecommitdiff
path: root/integration/plugin
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2023-04-16 09:40:24 +0200
committerSebastiaan van Stijn <github@gone.nl>2023-05-03 21:23:42 +0200
commitdbb48e4b29e124aef6716ee8ad6856bf696235ca (patch)
treed45ac2cf6f74bbaaafcac8961b79fcad0dfd7ac9 /integration/plugin
parent7103efac9d737e8b202126e8c8e2227805e70771 (diff)
downloaddocker-dbb48e4b29e124aef6716ee8ad6856bf696235ca.tar.gz
api/types/container: create type for changes endpoint
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
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 8b14754467..5e9d9b851e 100644
--- a/integration/plugin/graphdriver/external_test.go
+++ b/integration/plugin/graphdriver/external_test.go
@@ -450,8 +450,8 @@ func testGraphDriver(ctx context.Context, t *testing.T, c client.APIClient, driv
diffs, err := c.ContainerDiff(ctx, id)
assert.NilError(t, err)
- assert.Check(t, is.Contains(diffs, containertypes.ContainerChangeResponseItem{
- Kind: archive.ChangeAdd,
+ assert.Check(t, is.Contains(diffs, containertypes.FilesystemChange{
+ Kind: containertypes.ChangeAdd,
Path: "/hello",
}), "diffs: %v", diffs)