aboutsummaryrefslogtreecommitdiff
path: root/pkg/systemd/generate/common_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-08-25 08:09:03 -0400
committerGitHub <noreply@github.com>2021-08-25 08:09:03 -0400
commitd09259a1a754ab08c74b13272882a89b5c736e88 (patch)
tree4ce6b86bc2cf17da0e1b84c4c01beeeb0164fd54 /pkg/systemd/generate/common_test.go
parent8809aed5647b61abb14970d409ff7c99c7fbdc34 (diff)
parent822818287596c53a1b499d4fbd7cd1e8a60098a4 (diff)
downloadpodman-d09259a1a754ab08c74b13272882a89b5c736e88.tar.gz
podman-d09259a1a754ab08c74b13272882a89b5c736e88.tar.bz2
podman-d09259a1a754ab08c74b13272882a89b5c736e88.zip
Merge pull request #11320 from vrothberg/3.3-fix-11304
[3.3] generate systemd: use --cidfile again
Diffstat (limited to 'pkg/systemd/generate/common_test.go')
-rw-r--r--pkg/systemd/generate/common_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/systemd/generate/common_test.go b/pkg/systemd/generate/common_test.go
index 3e2ac015f..80abebb26 100644
--- a/pkg/systemd/generate/common_test.go
+++ b/pkg/systemd/generate/common_test.go
@@ -103,12 +103,12 @@ func TestFilterCommonContainerFlags(t *testing.T) {
},
{
[]string{"podman", "run", "--cidfile", "foo", "alpine"},
- []string{"podman", "run", "--cidfile", "foo", "alpine"},
+ []string{"podman", "run", "alpine"},
1,
},
{
[]string{"podman", "run", "--cidfile=foo", "alpine"},
- []string{"podman", "run", "--cidfile=foo", "alpine"},
+ []string{"podman", "run", "alpine"},
1,
},
{