771
771
def test_get_error_unexpected(self):
772
772
"""Error reported by server with no specific representation"""
773
773
class FlakyTransport(object):
774
775
def get_bytes(self, path):
775
776
raise Exception("some random exception from inside server")
776
777
server = smart.SmartTCPServer(backing_transport=FlakyTransport())