Skip to content

Commit

Permalink
Fix accidentally removed super().run(result)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiitk committed Jan 18, 2024
1 parent 3f797a4 commit 7abd2ec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions framework/test_cases/base_testcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

class BaseTestCase(absltest.TestCase):
def run(self, result: Optional[unittest.TestResult] = None) -> None:
super().run(result)
# TODO(sergiitk): should this method be returning result? See
# super().run and xds_k8s_testcase.XdsKubernetesBaseTestCase.subTest
test_errors = [error for test, error in result.errors if test is self]
Expand Down

0 comments on commit 7abd2ec

Please sign in to comment.