From 7923f440eddb336e196ee1aa78f14133c95da0fa Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 9 Oct 2025 11:51:07 +0200 Subject: [PATCH] cli/command/container: update todo comment Provide some context to the TODO Signed-off-by: Sebastiaan van Stijn --- cli/command/container/opts_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/command/container/opts_test.go b/cli/command/container/opts_test.go index 44dce2d264..71c615506e 100644 --- a/cli/command/container/opts_test.go +++ b/cli/command/container/opts_test.go @@ -47,7 +47,7 @@ func parseRun(args []string) (*container.Config, *container.HostConfig, *network if err := flags.Parse(args); err != nil { return nil, nil, nil, err } - // TODO: fix tests to accept ContainerConfig + // TODO(dnephin): fix tests to accept ContainerConfig; see https://github.com/moby/moby/pull/31621 containerCfg, err := parse(flags, copts, runtime.GOOS) if err != nil { return nil, nil, nil, err