diff options
Diffstat (limited to 'container/dispatcher_test.go')
| -rw-r--r-- | container/dispatcher_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/container/dispatcher_test.go b/container/dispatcher_test.go index ee2c3f19..b57c53b9 100644 --- a/container/dispatcher_test.go +++ b/container/dispatcher_test.go @@ -2,6 +2,7 @@ package container import ( "bytes" + "context" "fmt" "io" "io/fs" @@ -468,7 +469,7 @@ func (k *kstub) ensureFile(name string, perm, pperm os.FileMode) error { stub.CheckArg(k.Stub, "pperm", pperm, 2)) } -func (*kstub) mustLoopback(message.Msg) { /* noop */ } +func (*kstub) mustLoopback(context.Context, message.Msg) { /* noop */ } func (k *kstub) seccompLoad(rules []std.NativeRule, flags seccomp.ExportFlag) error { k.Helper() |
