diff --git a/runtime_test.go b/runtime_test.go index 07616ebce0..400886c802 100644 --- a/runtime_test.go +++ b/runtime_test.go @@ -321,7 +321,7 @@ func TestGet(t *testing.T) { } -func findAvailalblePort(runtime *Runtime, port int) (*Container, error) { +func findAvailablePort(runtime *Runtime, port int) (*Container, error) { strPort := strconv.Itoa(port) container, err := NewBuilder(runtime).Create(&Config{ Image: GetTestImage(runtime).ID, @@ -355,7 +355,7 @@ func TestAllocatePortLocalhost(t *testing.T) { port += 1 log.Println("Trying port", port) t.Log("Trying port", port) - container, err = findAvailalblePort(runtime, port) + container, err = findAvailablePort(runtime, port) if container != nil { break }