Mercurial > hgsubversion
comparison tests/test_single_dir_clone.py @ 833:312b37bc5e20
tests: avoid shadowing Python builtin all()
author | Yonggang Luo <luoyonggang@gmail.com> |
---|---|
date | Wed, 12 Oct 2011 15:43:31 +0800 |
parents | e9af7eba88db |
children | 20e73b5ab6f7 |
comparison
equal
deleted
inserted
replaced
832:e9af7eba88db | 833:312b37bc5e20 |
---|---|
264 @test_util.requiresoption('branch') | 264 @test_util.requiresoption('branch') |
265 def test_push_single_dir_renamed_branch_stupid(self): | 265 def test_push_single_dir_renamed_branch_stupid(self): |
266 self.test_push_single_dir_renamed_branch(True) | 266 self.test_push_single_dir_renamed_branch(True) |
267 | 267 |
268 def suite(): | 268 def suite(): |
269 all = [unittest.TestLoader().loadTestsFromTestCase(TestSingleDir)] | 269 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestSingleDir)] |
270 return unittest.TestSuite(all) | 270 return unittest.TestSuite(all_tests) |