Update podman.md (#6502)

Signed-off-by: Ian Maddaus <ian.maddaus@progress.com>

Fix missing quotation mark in podman.md
This commit is contained in:
Ian Maddaus 2023-09-05 07:52:47 -04:00 committed by GitHub
parent 8ee7bc946d
commit 73b6a2b1d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ Use the `podman` Chef InSpec audit resource to test multiple Podman containers.
```ruby
describe podman.containers do
its('ids') { should include "591270d8d80d26671fd6ed622f367fbe19004d16e3b519c292313feb5f22e7f7" }
its('images) { should include "docker.io/library/ubuntu:latest" }
its('images') { should include "docker.io/library/ubuntu:latest" }
end
```