Skip to content
Snippets Groups Projects
Commit 8be7a049 authored by Masood Malekghassemi's avatar Masood Malekghassemi
Browse files

Merge pull request #3149 from nathanielmanistaatgoogle/drop-invoker

Drop invoker during test tear-down
parents 696e5a30 dff73c7d
No related branches found
No related tags found
No related merge requests found
...@@ -73,6 +73,7 @@ class TestCase(test_coverage.Coverage, unittest.TestCase): ...@@ -73,6 +73,7 @@ class TestCase(test_coverage.Coverage, unittest.TestCase):
Overriding implementations must call this implementation. Overriding implementations must call this implementation.
""" """
self._invoker = None
self.implementation.destantiate(self._memo) self.implementation.destantiate(self._memo)
def testSuccessfulUnaryRequestUnaryResponse(self): def testSuccessfulUnaryRequestUnaryResponse(self):
......
...@@ -74,6 +74,7 @@ class TestCase(test_coverage.Coverage, unittest.TestCase): ...@@ -74,6 +74,7 @@ class TestCase(test_coverage.Coverage, unittest.TestCase):
Overriding implementations must call this implementation. Overriding implementations must call this implementation.
""" """
self._invoker = None
self.implementation.destantiate(self._memo) self.implementation.destantiate(self._memo)
def testSuccessfulUnaryRequestUnaryResponse(self): def testSuccessfulUnaryRequestUnaryResponse(self):
......
...@@ -103,6 +103,7 @@ class TestCase(test_coverage.Coverage, unittest.TestCase): ...@@ -103,6 +103,7 @@ class TestCase(test_coverage.Coverage, unittest.TestCase):
Overriding implementations must call this implementation. Overriding implementations must call this implementation.
""" """
self._invoker = None
self.implementation.destantiate(self._memo) self.implementation.destantiate(self._memo)
self._digest_pool.shutdown(wait=True) self._digest_pool.shutdown(wait=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment