diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-21 14:55:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 14:55:26 -0500 |
commit | d847ad598d752dad479250b7f289858cc272cb04 (patch) | |
tree | 4100d6634ba79d3e55d4f6d79835abc233133ad6 /test | |
parent | 1e5a4b99ee81164291fd2cf5a25408e641640e97 (diff) | |
parent | 5736649eb8eca8b6f1870a1868def188be1467ff (diff) | |
download | podman-d847ad598d752dad479250b7f289858cc272cb04.tar.gz podman-d847ad598d752dad479250b7f289858cc272cb04.tar.bz2 podman-d847ad598d752dad479250b7f289858cc272cb04.zip |
Merge pull request #12961 from rhatdan/codespell
Run codespell
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/play_build_test.go | 4 | ||||
-rw-r--r-- | test/e2e/volume_create_test.go | 2 | ||||
-rw-r--r-- | test/system/160-volumes.bats | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/play_build_test.go b/test/e2e/play_build_test.go index bbebf7949..70e042b4d 100644 --- a/test/e2e/play_build_test.go +++ b/test/e2e/play_build_test.go @@ -173,7 +173,7 @@ LABEL marge=mom err = writeYaml(testYAML, filepath.Join(yamlDir, "top.yaml")) Expect(err).To(BeNil()) - // build an image called foobar but make sure it doesnt have + // build an image called foobar but make sure it doesn't have // the same label as the yaml buildfile, so we can check that // the image is NOT rebuilt. err = writeYaml(prebuiltImage, filepath.Join(yamlDir, "Containerfile")) @@ -220,7 +220,7 @@ LABEL marge=mom err = writeYaml(testYAML, filepath.Join(yamlDir, "top.yaml")) Expect(err).To(BeNil()) - // build an image called foobar but make sure it doesnt have + // build an image called foobar but make sure it doesn't have // the same label as the yaml buildfile, so we can check that // the image is NOT rebuilt. err = writeYaml(prebuiltImage, filepath.Join(yamlDir, "Containerfile")) 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}) diff --git a/test/system/160-volumes.bats b/test/system/160-volumes.bats index b6030ba3c..3f2d7f6bb 100644 --- a/test/system/160-volumes.bats +++ b/test/system/160-volumes.bats @@ -375,7 +375,7 @@ NeedsChown | true run_podman run --rm --volume $myvolume:/etc $IMAGE ls /etc/passwd run_podman volume inspect --format '{{ .NeedsCopyUp }}' $myvolume - is "${output}" "false" "If content in dest '/etc' non-empty NeedsCopyUP should still have happend and be false" + is "${output}" "false" "If content in dest '/etc' non-empty NeedsCopyUP should still have happened and be false" run_podman volume inspect --format '{{.Mountpoint}}' $myvolume mountpoint="$output" |