Fix test_xmlrpc_net to no longer fail since there are no more buildbots for trunk.

This commit is contained in:
Brett Cannon 2010-07-05 22:11:16 +00:00
parent 31c2740760
commit c84dc9d018

View file

@ -48,7 +48,7 @@ def test_python_builders(self):
# Perform a minimal sanity check on the result, just to be sure
# the request means what we think it means.
self.assertIsInstance(builders, collections.Sequence)
self.assertTrue([x for x in builders if "trunk" in x], builders)
self.assertTrue([x for x in builders if "3.x" in x], builders)
def test_main():