summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/e2e/libpod_suite_test.go2
-rw-r--r--test/e2e/push_test.go2
-rw-r--r--test/e2e/rmi_test.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go
index 1383b5a19..7007c5075 100644
--- a/test/e2e/libpod_suite_test.go
+++ b/test/e2e/libpod_suite_test.go
@@ -254,7 +254,7 @@ func (s *PodmanSession) OutputToStringArray() []string {
return strings.Split(output, "\n")
}
-// IsJSONOutputValid attempts to unmarshall the session buffer
+// IsJSONOutputValid attempts to unmarshal the session buffer
// and if successful, returns true, else false
func (s *PodmanSession) IsJSONOutputValid() bool {
var i interface{}
diff --git a/test/e2e/push_test.go b/test/e2e/push_test.go
index b5a1002f2..3f559cc95 100644
--- a/test/e2e/push_test.go
+++ b/test/e2e/push_test.go
@@ -160,7 +160,7 @@ var _ = Describe("Podman push", func() {
defer podmanTest.SystemExec("systemctl", []string{"stop", "docker"})
} else if setup.ExitCode() != 0 {
- Skip("Docker is not avaiable")
+ Skip("Docker is not available")
}
session := podmanTest.Podman([]string{"push", ALPINE, "docker-daemon:alpine:podmantest"})
diff --git a/test/e2e/rmi_test.go b/test/e2e/rmi_test.go
index 43fe84157..399fcd0fc 100644
--- a/test/e2e/rmi_test.go
+++ b/test/e2e/rmi_test.go
@@ -59,7 +59,7 @@ var _ = Describe("Podman rmi", func() {
})
- It("podman rmi all images forceably with short options", func() {
+ It("podman rmi all images forcibly with short options", func() {
podmanTest.PullImages([]string{image3})
session := podmanTest.Podman([]string{"rmi", "-fa"})
session.WaitWithDefaultTimeout()