1
0
Fork 0
mirror of https://github.com/spf13/cobra synced 2025-04-04 22:09:11 +00:00
This commit is contained in:
Fraser Waters 2025-02-21 12:05:26 +00:00
parent d848cfcdf8
commit 47f12e63de

View file

@ -2926,7 +2926,8 @@ func TestHelpFuncExecuted(t *testing.T) {
helpText := "Long description"
// Create a context that will be unique, not just the background context
executionCtx, _ := context.WithCancel(context.Background())
executionCtx, cancel := context.WithCancel(context.Background())
defer cancel()
child := &Command{Use: "child", Run: emptyRun}
child.SetHelpFunc(func(cmd *Command, args []string) {