Skip to content

Commit aa44c43

Browse files
Merge pull request #6333 from thaJeztah/28.x_fix_plugin_tests
[28.x] e2e/testutils: fix incorrect use of PluginConfigInterface
2 parents 5184f2e + 39e1213 commit aa44c43

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

e2e/testutils/plugins.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ func SetupPlugin(t *testing.T, ctx context.Context) *fs.Dir {
3232
},
3333
Interface: types.PluginConfigInterface{
3434
Socket: "basic.sock",
35-
Types: []types.PluginInterfaceType{{Capability: "docker.dummy/1.0"}},
35+
Types: []types.PluginInterfaceType{{
36+
Capability: "dummy",
37+
Prefix: "docker",
38+
Version: "1.0",
39+
}},
3640
},
3741
Entrypoint: []string{"/basic"},
3842
}

0 commit comments

Comments
 (0)