summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-09 19:39:56 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-09 19:39:56 (GMT)
commite0da9fcf06aa618b443bfea707fecab4b91dc0cb (patch)
treea43a6f53ecc91a45e135c13539be62991157b2e3 /Lib
parentead883a366b90df45de02c527e88b5200ad04f81 (diff)
downloadcpython-e0da9fcf06aa618b443bfea707fecab4b91dc0cb.zip
cpython-e0da9fcf06aa618b443bfea707fecab4b91dc0cb.tar.gz
cpython-e0da9fcf06aa618b443bfea707fecab4b91dc0cb.tar.bz2
3.x is the new trunk
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_xmlrpc_net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py
index ddb686d..217d65e 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.assertTrue(isinstance(builders, collections.Sequence), type(builders))
- 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():