summaryrefslogtreecommitdiff
path: root/cmd/kpod/run.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2017-11-02 08:25:06 -0500
committerbaude <bbaude@redhat.com>2017-11-03 20:37:33 -0500
commitaa19565d8d86701191bb2bf15fe0ab019da590dc (patch)
treea35e59ba9ab1f1b11754fcde54d4b606271c10b4 /cmd/kpod/run.go
parent99ca35f18598f77bcf260f91044116365d8e3c26 (diff)
downloadpodman-aa19565d8d86701191bb2bf15fe0ab019da590dc.tar.gz
podman-aa19565d8d86701191bb2bf15fe0ab019da590dc.tar.bz2
podman-aa19565d8d86701191bb2bf15fe0ab019da590dc.zip
spec.go: Remove cli context as func arg
Remove cli context as a func arg to make unit tests easier. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/kpod/run.go')
-rw-r--r--cmd/kpod/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/kpod/run.go b/cmd/kpod/run.go
index cefa1d2d0..904977940 100644
--- a/cmd/kpod/run.go
+++ b/cmd/kpod/run.go
@@ -63,7 +63,7 @@ func runCmd(c *cli.Context) error {
}
logrus.Debug("imageID is ", imageID)
- options, err := createConfig.GetContainerCreateOptions(c)
+ options, err := createConfig.GetContainerCreateOptions()
if err != nil {
return errors.Wrapf(err, "unable to parse new container options")
}