[Python-checkins] r82600 - python/branches/py3k/Lib/test/test_xmlrpc_net.py

brett.cannon python-checkins at python.org
Tue Jul 6 00:11:16 CEST 2010


Author: brett.cannon
Date: Tue Jul  6 00:11:16 2010
New Revision: 82600

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

Modified:
   python/branches/py3k/Lib/test/test_xmlrpc_net.py

Modified: python/branches/py3k/Lib/test/test_xmlrpc_net.py
==============================================================================
--- python/branches/py3k/Lib/test/test_xmlrpc_net.py	(original)
+++ python/branches/py3k/Lib/test/test_xmlrpc_net.py	Tue Jul  6 00:11:16 2010
@@ -48,7 +48,7 @@
         # 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():


More information about the Python-checkins mailing list