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

This commit is contained in:
Louis Opter 2013-06-12 16:39:49 -07:00
parent 0acdef4549
commit 1a1daca621

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
}