3.x is the new trunk

This commit is contained in:
Benjamin Peterson 2010-07-09 19:39:56 +00:00
parent ead883a366
commit e0da9fcf06

View 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.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():