Mercurial > hgsubversion
comparison tests/test_fetch_symlinks.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 | 1d07e86f5797 |
comparison
equal
deleted
inserted
replaced
| 832:e9af7eba88db | 833:312b37bc5e20 |
|---|---|
| 51 | 51 |
| 52 def test_symlinks_stupid(self): | 52 def test_symlinks_stupid(self): |
| 53 self.test_symlinks(True) | 53 self.test_symlinks(True) |
| 54 | 54 |
| 55 def suite(): | 55 def suite(): |
| 56 all = [unittest.TestLoader().loadTestsFromTestCase(TestFetchSymlinks), | 56 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestFetchSymlinks), |
| 57 ] | 57 ] |
| 58 return unittest.TestSuite(all) | 58 return unittest.TestSuite(all_tests) |
