From db69f7a0533ce11fbbe8a97032f187dd5e43eeb8 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Thu, 23 Nov 2023 05:25:43 -0500 Subject: [PATCH] Remove further leftover debug statements --- django_expanded_test_cases/test_cases/base_test_case.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/django_expanded_test_cases/test_cases/base_test_case.py b/django_expanded_test_cases/test_cases/base_test_case.py index d04c712..677f799 100644 --- a/django_expanded_test_cases/test_cases/base_test_case.py +++ b/django_expanded_test_cases/test_cases/base_test_case.py @@ -16,7 +16,6 @@ class BaseTestCase(TestCase, CoreTestCaseMixin): @classmethod def setUpClass(cls, *args, debug_print=None, **kwargs): """Test logic setup run at the start of class creation.""" - print('BaseTestCase setUpClass()') # Call parent logic. return_val = super().setUpClass() @@ -29,7 +28,6 @@ class BaseTestCase(TestCase, CoreTestCaseMixin): @classmethod def setUpTestData(cls, *args, **kwargs): """Test logic setup run at the start of class creation, specifically for data setup.""" - print('BaseTestCase setUpTestData()') # Call parent logic. return_val = super().setUpTestData() @@ -41,7 +39,6 @@ class BaseTestCase(TestCase, CoreTestCaseMixin): def setUp(self, *args, **kwargs): """Test logic setup run at the start of function/method execution.""" - print('BaseTestCase setUp()') # Call parent logic. return_val = super().setUp() @@ -55,7 +52,6 @@ class BaseTestCase(TestCase, CoreTestCaseMixin): def subTest(self, *args, **kwargs): """Test logic setup run every time we enter a subtest.""" - print('BaseTestCase subTest()') # Call parent logic. return_val = super().subTest() @@ -68,7 +64,6 @@ class BaseTestCase(TestCase, CoreTestCaseMixin): @classmethod def tearDownClass(cls, *args, **kwargs): """Test logic setup run at the end of class execution, as part of termination/clean up.""" - print('BaseTestCase tearDownClass()') # Call parent logic. return_val = super().tearDownClass() @@ -80,7 +75,6 @@ class BaseTestCase(TestCase, CoreTestCaseMixin): def tearDown(self, *args, **kwargs): """Test logic setup run at the end of function/method execution, as part of termination/clean up.""" - print('BaseTestCase tearDown()') # Call parent logic. return_val = super().tearDown() -- GitLab