diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-09-29 14:15:37 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-09-29 14:16:42 +0200 |
commit | e2fe9eabac61c4d5e1e9095c2cac1982409371d4 (patch) | |
tree | 8da0d9ff7a7a985f3ecd9de5c13190186c1f6839 /test/e2e | |
parent | f52feded3ce6c1ad2af046ab774fbc2b9c832487 (diff) | |
download | podman-e2fe9eabac61c4d5e1e9095c2cac1982409371d4.tar.gz podman-e2fe9eabac61c4d5e1e9095c2cac1982409371d4.tar.bz2 podman-e2fe9eabac61c4d5e1e9095c2cac1982409371d4.zip |
Revert "remote: fix manifest add --annotation"
This reverts commit 32f54a81ed797597827123b671b6e73194354327.
`pkg/bindings` is supported outside of podman and we have to keep it
stable.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/manifest_test.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index 404f2cd3a..b0a5e7d03 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -165,20 +165,6 @@ var _ = Describe("Podman manifest", func() { )) }) - It("add --annotation", func() { - session := podmanTest.Podman([]string{"manifest", "create", "foo"}) - session.WaitWithDefaultTimeout() - Expect(session).Should(Exit(0)) - session = podmanTest.Podman([]string{"manifest", "add", "--annotation", "hoge=fuga", "foo", imageList}) - session.WaitWithDefaultTimeout() - Expect(session).Should(Exit(0)) - session = podmanTest.Podman([]string{"manifest", "inspect", "foo"}) - session.WaitWithDefaultTimeout() - Expect(session).Should(Exit(0)) - Expect(session.OutputToString()).To(ContainSubstring(`"annotations"`)) - Expect(session.OutputToString()).To(ContainSubstring(`"hoge": "fuga"`)) - }) - It("add --os", func() { session := podmanTest.Podman([]string{"manifest", "create", "foo"}) session.WaitWithDefaultTimeout() |