]> granicus.if.org Git - python/commitdiff
Fix test_xmlrpc_net to no longer fail since there are no more buildbots for trunk.
authorBrett Cannon <bcannon@gmail.com>
Mon, 5 Jul 2010 22:11:16 +0000 (22:11 +0000)
committerBrett Cannon <bcannon@gmail.com>
Mon, 5 Jul 2010 22:11:16 +0000 (22:11 +0000)
Lib/test/test_xmlrpc_net.py

index 493e3639ece7e9aaf8e1d6d639218e5e90225504..4d3f7a604fa49c727c57458b95cfeecd14095547 100644 (file)
@@ -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():