Fix a typo in runtime_test.go: Availalble -> Available

Upstream-commit: 1a1daca621233b4588c079e35851d0e542282124
Component: engine
This commit is contained in:
Louis Opter
2013-06-12 16:39:49 -07:00
parent 044e4ac12c
commit ea75ddf770

View File

@ -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
}