test/e2e/framework: fix external/internal typo err in GetNodeInternalIP

This commit is contained in:
Eric Paris 2019-01-26 17:11:53 -05:00
parent 8d804ceb10
commit 384da53441

View File

@ -4916,7 +4916,7 @@ func GetNodeInternalIP(node *v1.Node) (string, error) {
}
}
if host == "" {
return "", fmt.Errorf("Couldn't get the external IP of host %s with addresses %v", node.Name, node.Status.Addresses)
return "", fmt.Errorf("Couldn't get the internal IP of host %s with addresses %v", node.Name, node.Status.Addresses)
}
return host, nil
}