From 68bd98596caea73a198caed22cdb4970ec930e5e Mon Sep 17 00:00:00 2001 From: Satnam Singh Date: Tue, 24 Mar 2015 00:03:06 -0700 Subject: [PATCH] Fix error message for logging e2e test --- test/e2e/es_cluster_logging.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/es_cluster_logging.go b/test/e2e/es_cluster_logging.go index 5a921688bed..1c6eeac0681 100644 --- a/test/e2e/es_cluster_logging.go +++ b/test/e2e/es_cluster_logging.go @@ -334,5 +334,5 @@ func ClusterLevelLoggingWithElasticsearch(c *client.Client) { Logf("After %s found all %d log lines", time.Since(start), expected) return } - Failf("Failed to find all %d log lines (%d were missing)", expected, missing) + Failf("Failed to find all %d log lines", expected) }