From: Brett Cannon Date: Mon, 5 Jul 2010 22:11:16 +0000 (+0000) Subject: Fix test_xmlrpc_net to no longer fail since there are no more buildbots for trunk. X-Git-Tag: v3.2a1~293 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c84dc9d0187cfa62d635d6447db6d6492a06c4bf;p=python Fix test_xmlrpc_net to no longer fail since there are no more buildbots for trunk. --- diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index 493e3639ec..4d3f7a604f 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -48,7 +48,7 @@ class CurrentTimeTest(unittest.TestCase): # 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():