From 73b6a2b1d73a95ff37c824750d7405297d7e71ff Mon Sep 17 00:00:00 2001 From: Ian Maddaus Date: Tue, 5 Sep 2023 07:52:47 -0400 Subject: [PATCH] Update podman.md (#6502) Signed-off-by: Ian Maddaus Fix missing quotation mark in podman.md --- docs-chef-io/content/inspec/resources/podman.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-chef-io/content/inspec/resources/podman.md b/docs-chef-io/content/inspec/resources/podman.md index 406a95173..6864cbb7b 100644 --- a/docs-chef-io/content/inspec/resources/podman.md +++ b/docs-chef-io/content/inspec/resources/podman.md @@ -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 ```