(self)
| 108 | warnings.warn(msg, DeprecationWarning, stacklevel=4) |
| 109 | |
| 110 | def _callTearDown(self): |
| 111 | self._callAsync(self.asyncTearDown) |
| 112 | self._asyncioTestContext.run(self.tearDown) |
| 113 | |
| 114 | def _callCleanup(self, function, *args, **kwargs): |
| 115 | self._callMaybeAsync(function, *args, **kwargs) |
nothing calls this directly
no test coverage detected