Merge "Remove excess printing from stats test" into feature/zuulv3
diff --git a/tests/base.py b/tests/base.py
index 9ec8e54..f10157d 100755
--- a/tests/base.py
+++ b/tests/base.py
@@ -21,7 +21,6 @@
 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 @@
         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 @@
                             return
             time.sleep(0.1)
 
-        pprint.pprint(self.statsd.stats)
         raise Exception("Key %s not found in reported stats" % key)
 
     def assertBuilds(self, builds):