From: Benjamin Peterson Date: Fri, 9 Jul 2010 19:39:56 +0000 (+0000) Subject: 3.x is the new trunk X-Git-Tag: v3.1.3rc1~536 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e0da9fcf06aa618b443bfea707fecab4b91dc0cb;p=thirdparty%2FPython%2Fcpython.git 3.x is the new trunk --- diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index ddb686d50114..217d65effe18 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():