diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-02-01 15:31:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 15:31:37 -0500 |
commit | 71c3bdba0e3d0301047137da00fc3582deed2379 (patch) | |
tree | b775747b3bc0e757ccdbaa31642eb9aedf52b92d /test | |
parent | ef9a734d6eded02051573fea34e110319b7b42e0 (diff) | |
parent | 2ceab119478502fd06703036bc79953ed6f37f74 (diff) | |
download | podman-71c3bdba0e3d0301047137da00fc3582deed2379.tar.gz podman-71c3bdba0e3d0301047137da00fc3582deed2379.tar.bz2 podman-71c3bdba0e3d0301047137da00fc3582deed2379.zip |
Merge pull request #13085 from ydayagi/main
play kube envVar.valueFrom.fieldRef
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/play_kube_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go index cbaa8d6a4..b5e64fcbc 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -2984,7 +2984,7 @@ invalid kube kind inspect = podmanTest.Podman([]string{"inspect", podName + "-" + ctr02Name, "--format", "'{{.Config.Labels}}'"}) inspect.WaitWithDefaultTimeout() Expect(inspect).Should(Exit(0)) - Expect(inspect.OutputToString()).To(ContainSubstring(`map[]`)) + Expect(inspect.OutputToString()).NotTo(ContainSubstring(autoUpdateRegistry + ":" + autoUpdateRegistryValue)) }) It("podman play kube teardown", func() { |