File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,7 @@ class ImmunizationBaseTest(unittest.TestCase):
3838 generated_imms_records : List [str ]
3939
4040 # Called once before any test methods in the class are run.
41- # The purpose of setUpClass is to prepare shared resources that
42- # All tests in the class can use
41+ # The purpose of setUpClass is to prepare shared resources that all tests in the class can use
4342 @classmethod
4443 def setUpClass (cls ):
4544 cls .apps = []
@@ -91,7 +90,7 @@ def make_app_data() -> ApigeeApp:
9190 cls .tearDownClass ()
9291 raise e
9392
94- # Class method that runs once after all test methods in the class have finished.
93+ # Class method that runs once after all test methods in the class have finished.
9594 # It is used to clean up resources that were shared across multiple tests
9695 @classmethod
9796 def tearDownClass (cls ):
@@ -100,8 +99,8 @@ def tearDownClass(cls):
10099 if hasattr (cls , "product" ) and cls :
101100 cls .apigee_service .delete_product (cls .product .name )
102101
103- # Runs after each individual test method in a test class.
104- # It’s used to clean up resources that were initialized specifically for a single test,
102+ # Runs after each individual test method in a test class.
103+ # It’s used to clean up resources that were initialized specifically for a single test,
105104 # such as temporary files or mock objects.
106105 def tearDown (cls ):
107106 for api in cls .imms_apis :
You can’t perform that action at this time.
0 commit comments