comparison tests/test_push_eol.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 d2ef7220a079
children 04729f3a3d17
comparison
equal deleted inserted replaced
832:e9af7eba88db 833:312b37bc5e20
35 35
36 def test_push_dirs_stupid(self): 36 def test_push_dirs_stupid(self):
37 self._test_push_dirs(True) 37 self._test_push_dirs(True)
38 38
39 def suite(): 39 def suite():
40 all = [unittest.TestLoader().loadTestsFromTestCase(TestPushEol), 40 all_tests = [unittest.TestLoader().loadTestsFromTestCase(TestPushEol),
41 ] 41 ]
42 return unittest.TestSuite(all) 42 return unittest.TestSuite(all_tests)