From c15b28fd71098f77323680db9b1bb0e76cfdbe94 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Mon, 25 Mar 2013 21:24:40 -0700 Subject: [PATCH] fix metrics test --- test/clj/backtype/storm/metrics_test.clj | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/clj/backtype/storm/metrics_test.clj b/test/clj/backtype/storm/metrics_test.clj index 62d7af239..e6a0e9942 100644 --- a/test/clj/backtype/storm/metrics_test.clj +++ b/test/clj/backtype/storm/metrics_test.clj @@ -244,13 +244,11 @@ (.feed feeder ["a"] 1) (advance-cluster-time cluster 70) (assert-buckets! "__system" "newWorkerEvent" [1]) - (assert-buckets! "__system" "configTopologyWorkers" [1]) (assert-metric-data-exists! "__system" "uptimeSecs") (assert-metric-data-exists! "__system" "startTimeSecs") - (assert-metric-data-exists! "__system" "topologyPartialUptimeSecs") (advance-cluster-time cluster 180) (assert-buckets! "__system" "newWorkerEvent" [1 0 0 0]) - (assert-buckets! "__system" "configTopologyWorkers" [1 1 1 1])))) + )))