Fix a typo in runtime_test.go: Availalble -> Available
Upstream-commit: 1a1daca621233b4588c079e35851d0e542282124 Component: engine
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user