From 384da53441bd0d8198571a25404347567b0fb9f3 Mon Sep 17 00:00:00 2001 From: Eric Paris Date: Sat, 26 Jan 2019 17:11:53 -0500 Subject: [PATCH] test/e2e/framework: fix external/internal typo err in GetNodeInternalIP --- test/e2e/framework/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 1a9e0c359c..4c60c3e317 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -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 }