fix unit tests from component dependency chain changes

This commit is contained in:
Victor Shyba 2021-10-19 16:05:01 -03:00 committed by Jack Robison
parent 13667df374
commit 4f1dc29df1

View file

@ -26,14 +26,12 @@ class TestComponentManager(AsyncioTestCase):
components.WalletComponent components.WalletComponent
], ],
[ [
components.BackgroundDownloader,
components.DiskSpaceComponent, components.DiskSpaceComponent,
components.FileManagerComponent, components.FileManagerComponent,
components.HashAnnouncerComponent, components.HashAnnouncerComponent,
components.PeerProtocolServerComponent, components.PeerProtocolServerComponent,
components.WalletServerPaymentsComponent components.WalletServerPaymentsComponent
],
[
components.BackgroundDownloader
] ]
] ]
self.component_manager = ComponentManager(Config()) self.component_manager = ComponentManager(Config())