diff --git a/test/e2e/autoscaling/cluster_size_autoscaling.go b/test/e2e/autoscaling/cluster_size_autoscaling.go index c0b366d7e6e..cad367e1bad 100644 --- a/test/e2e/autoscaling/cluster_size_autoscaling.go +++ b/test/e2e/autoscaling/cluster_size_autoscaling.go @@ -1298,7 +1298,7 @@ func addNodePool(name string, machineType string, numNodes int) { "--cluster=" + framework.TestContext.CloudConfig.Cluster} output, err := execCmd(getGcloudCommand(args)...).CombinedOutput() glog.Infof("Creating node-pool %s: %s", name, output) - framework.ExpectNoError(err, output) + framework.ExpectNoError(err, string(output)) } func deleteNodePool(name string) {