summaryrefslogtreecommitdiff
path: root/test/e2e/volume_create_test.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-01-21 07:02:54 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2022-01-21 09:52:12 -0500
commit5736649eb8eca8b6f1870a1868def188be1467ff (patch)
tree777de6b2dfc18de27fb5996e8c17469fba4324f5 /test/e2e/volume_create_test.go
parentc6fd8a421263f5e0386b6f711ea62e68b0188ad6 (diff)
downloadpodman-5736649eb8eca8b6f1870a1868def188be1467ff.tar.gz
podman-5736649eb8eca8b6f1870a1868def188be1467ff.tar.bz2
podman-5736649eb8eca8b6f1870a1868def188be1467ff.zip
Run codespell on code
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/volume_create_test.go')
-rw-r--r--test/e2e/volume_create_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/volume_create_test.go b/test/e2e/volume_create_test.go
index 966bc932a..0ac91abd3 100644
--- a/test/e2e/volume_create_test.go
+++ b/test/e2e/volume_create_test.go
@@ -144,7 +144,7 @@ var _ = Describe("Podman volume create", func() {
Expect(inspectGID).Should(Exit(0))
Expect(inspectGID.OutputToString()).To(Equal(gid))
- // options should containt `uid=3000,gid=4000:3000:4000`
+ // options should contain `uid=3000,gid=4000:3000:4000`
optionFormat := `{{ .Options.o }}:{{ .Options.UID }}:{{ .Options.GID }}`
optionStrFormatExpect := fmt.Sprintf(`uid=%s,gid=%s:%s:%s`, uid, gid, uid, gid)
inspectOpts := podmanTest.Podman([]string{"volume", "inspect", "--format", optionFormat, volName})