tests, add __slots__ to AbstractBlob

This commit is contained in:
Jack Robison 2019-04-05 12:28:45 -04:00
parent 60c9ae64b4
commit d3eac48035
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 20 additions and 11 deletions
tests/unit/blob_exchange

View file

@ -51,6 +51,7 @@ class BlobExchangeTestBase(AsyncioTestCase):
await self.server_blob_manager.setup()
self.server.start_server(33333, '127.0.0.1')
self.addCleanup(self.server.stop_server)
await self.server.started_listening.wait()