Return the canned handler

This commit is contained in:
Jean-Paul Calderone 2020-12-14 18:29:50 -05:00
parent b77f43e360
commit 677e62e73e

View File

@ -1172,6 +1172,7 @@ class FakeProvider(object):
def get_client_endpoint(self):
if self._handler is None:
raise Exception("{!r} has no client endpoint.")
return self._handler
class _TestCaseMixin(object):