summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-01 14:42:03 +0000
committerGitHub <noreply@github.com>2022-07-01 14:42:03 +0000
commitb00e65aa9c071428579a55f91a92f3702765ed85 (patch)
tree78e38666c85ebc80627caddee6a96aa7867c668b /test
parent21cd3b2ed270c7396157c4a85457842804d29a00 (diff)
parent7131c847238a166f04c122c254487a9d53e29d71 (diff)
downloadpodman-b00e65aa9c071428579a55f91a92f3702765ed85.tar.gz
podman-b00e65aa9c071428579a55f91a92f3702765ed85.tar.bz2
podman-b00e65aa9c071428579a55f91a92f3702765ed85.zip
Merge pull request #14799 from vrothberg/fix-build
fix build
Diffstat (limited to 'test')
-rw-r--r--test/testvol/util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testvol/util.go b/test/testvol/util.go
index 7a0aeba86..b50bb3afb 100644
--- a/test/testvol/util.go
+++ b/test/testvol/util.go
@@ -25,5 +25,5 @@ func getPluginName(pathOrName string) string {
func getPlugin(sockNameOrPath string) (*plugin.VolumePlugin, error) {
path := getSocketPath(sockNameOrPath)
name := getPluginName(sockNameOrPath)
- return plugin.GetVolumePlugin(name, path)
+ return plugin.GetVolumePlugin(name, path, 0)
}