From ce001e11a86770e35571bbf6f45d412368fbcd1f Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 5 Jan 2017 13:38:07 -0800 Subject: [PATCH] Remove excess printing from stats test This isn't necessary and makes the output of this test noisy. Change-Id: I214d40fada9567ac6b9cee5ff9cdc748a472cbbb --- tests/base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/base.py b/tests/base.py index 9ec8e54291..f10157db9c 100755 --- a/tests/base.py +++ b/tests/base.py @@ -21,7 +21,6 @@ import hashlib import json import logging import os -import pprint from six.moves import queue as Queue from six.moves import urllib import random @@ -1616,7 +1615,6 @@ class ZuulTestCase(BaseTestCase): start = time.time() while time.time() < (start + 5): for stat in self.statsd.stats: - pprint.pprint(self.statsd.stats) k, v = stat.split(':') if key == k: if value is None and kind is None: @@ -1629,7 +1627,6 @@ class ZuulTestCase(BaseTestCase): return time.sleep(0.1) - pprint.pprint(self.statsd.stats) raise Exception("Key %s not found in reported stats" % key) def assertBuilds(self, builds):