diff options
author | Steven Taylor <steven@taylormuff.co.uk> | 2021-02-03 23:35:14 +0000 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-02-05 13:52:58 -0500 |
commit | c9a6e6eaf35a3c604de13e34fad3d5b027c1e7cd (patch) | |
tree | f79022600071bc142754acca53d4c5887832618a /test/e2e | |
parent | 204239169a59d790c2732947f39484d1bb6114a8 (diff) | |
download | podman-c9a6e6eaf35a3c604de13e34fad3d5b027c1e7cd.tar.gz podman-c9a6e6eaf35a3c604de13e34fad3d5b027c1e7cd.tar.bz2 podman-c9a6e6eaf35a3c604de13e34fad3d5b027c1e7cd.zip |
play kube selinux test case
fixed typo in the label comparison
Signed-off-by: Steven Taylor <steven@taylormuff.co.uk>
Diffstat (limited to 'test/e2e')
-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 9fbedc073..e34063dc2 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -858,7 +858,7 @@ var _ = Describe("Podman play kube", func() { inspect.WaitWithDefaultTimeout() label := inspect.OutputToString() - Expect(label).To(ContainSubstring("nconfined_u:system_r:spc_t:s0")) + Expect(label).To(ContainSubstring("unconfined_u:system_r:spc_t:s0")) }) It("podman play kube fail with nonexistent authfile", func() { |