diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-07-05 22:11:16 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-07-05 22:11:16 (GMT) |
commit | c84dc9d0187cfa62d635d6447db6d6492a06c4bf (patch) | |
tree | 1ce976247e17916aa06cca15c3f66a429cbe468a /Lib | |
parent | 31c2740760329ff49813231e2f5e7df4ea8cfcc4 (diff) | |
download | cpython-c84dc9d0187cfa62d635d6447db6d6492a06c4bf.zip cpython-c84dc9d0187cfa62d635d6447db6d6492a06c4bf.tar.gz cpython-c84dc9d0187cfa62d635d6447db6d6492a06c4bf.tar.bz2 |
Fix test_xmlrpc_net to no longer fail since there are no more buildbots for trunk.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_xmlrpc_net.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index 493e363..4d3f7a6 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(): |