comparison tests/test_push_renames.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 04729f3a3d17
comparison
equal deleted inserted replaced
832:e9af7eba88db 833:312b37bc5e20
117 ' There is a print on the preceding line commented out ' 117 ' There is a print on the preceding line commented out '
118 'that should help you.') 118 'that should help you.')
119 119
120 120
121 def suite(): 121 def suite():
122 all = [unittest.TestLoader().loadTestsFromTestCase(TestPushRenames), 122 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestPushRenames),
123 ] 123 ]
124 return unittest.TestSuite(all) 124 return unittest.TestSuite(all_tests)