summaryrefslogtreecommitdiff
path: root/integration/plugin
diff options
context:
space:
mode:
authorCory Snider <csnider@mirantis.com>2022-09-23 14:09:51 -0400
committerCory Snider <csnider@mirantis.com>2022-09-23 16:56:52 -0400
commite332c41e9d29954c78f927ae6b4e884fcb683cdd (patch)
tree5cdedd2e9fb7bb4d1a141679be054407994a1027 /integration/plugin
parent95824f2b5f44cd90096c865b093ed9a68342377a (diff)
downloaddocker-e332c41e9d29954c78f927ae6b4e884fcb683cdd.tar.gz
pkg/containerfs: alias ContainerFS to string
Drop the constructor and redundant string() type-casts. Signed-off-by: Cory Snider <csnider@mirantis.com>
Diffstat (limited to 'integration/plugin')
-rw-r--r--integration/plugin/graphdriver/external_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration/plugin/graphdriver/external_test.go b/integration/plugin/graphdriver/external_test.go
index c5a08cd89e..f96a7dcc32 100644
--- a/integration/plugin/graphdriver/external_test.go
+++ b/integration/plugin/graphdriver/external_test.go
@@ -219,7 +219,7 @@ func setupPlugin(t *testing.T, ec map[string]*graphEventsCounter, ext string, mu
respond(w, err)
return
}
- respond(w, &graphDriverResponse{Dir: string(dir)})
+ respond(w, &graphDriverResponse{Dir: dir})
})
mux.HandleFunc("/GraphDriver.Put", func(w http.ResponseWriter, r *http.Request) {