File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- #! /usr/bin/env python
1+ #! /usr/bin/env python3
22"""
33BSD 3-Clause License
44
5- Copyright (c) 2021 , University of Southern California
5+ Copyright (c) 2025 , University of Southern California
66All rights reserved.
77
88Redistribution and use in source and binary forms, with or without
@@ -53,10 +53,10 @@ def __init__(self):
5353 Add core Broadband functionality
5454 """
5555 unittest .TestSuite .__init__ (self )
56- self .addTest (unittest .makeSuite (TestBBandUtils ))
57- self .addTest (unittest .makeSuite (TestPythonCode ))
58- self .addTest (unittest .makeSuite (TestArias ))
59- self .addTest (unittest .makeSuite (TestBBPFormat ))
56+ self .addTest (unittest .defaultTestLoader . loadTestsFromTestCase (TestBBandUtils ))
57+ self .addTest (unittest .defaultTestLoader . loadTestsFromTestCase (TestPythonCode ))
58+ self .addTest (unittest .defaultTestLoader . loadTestsFromTestCase (TestArias ))
59+ self .addTest (unittest .defaultTestLoader . loadTestsFromTestCase (TestBBPFormat ))
6060
6161if __name__ == '__main__' :
6262 CORE = CoreTestSuite ()
You can’t perform that action at this time.
0 commit comments