mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
#2621 rename test.test_support to test.support
This commit is contained in:
parent
6a654814ea
commit
ee8712cda4
358 changed files with 1308 additions and 1307 deletions
|
@ -1,4 +1,4 @@
|
|||
from test import test_support, seq_tests
|
||||
from test import support, seq_tests
|
||||
|
||||
class TupleTest(seq_tests.CommonTest):
|
||||
type2test = tuple
|
||||
|
@ -83,7 +83,7 @@ class TupleTest(seq_tests.CommonTest):
|
|||
self.assertEqual(repr(a2), "(0, 1, 2)")
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(TupleTest)
|
||||
support.run_unittest(TupleTest)
|
||||
|
||||
if __name__=="__main__":
|
||||
test_main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue