Merge pull request #17247 from vrothberg/fix-ci

fix CI: test fail due to merge
This commit is contained in:
OpenShift Merge Robot 2023-01-27 05:34:43 -05:00 committed by GitHub
commit 8fce9dcde6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4989,7 +4989,7 @@ spec:
inspect := podmanTest.Podman([]string{"inspect", "test-hostipc-alpine", "--format", "{{ .HostConfig.IpcMode }}"})
inspect.WaitWithDefaultTimeout()
Expect(inspect).Should(Exit(0))
Expect(inspect.OutputToString()).To(Equal("shareable"))
Expect(inspect.OutputToString()).To(Equal("host"))
cmd := exec.Command("ls", "-l", "/proc/self/ns/ipc")
res, err := cmd.Output()