We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 853578b commit c440be1Copy full SHA for c440be1
1 file changed
tests/contacts/test_contact_tcp.py
@@ -41,7 +41,7 @@ def test_refresh_without_socket_errors(self, event_loop):
41
class TestContact:
42
43
def test_tcp_contact(self, event_loop):
44
- self.services = {'data_svc': mock.Mock(), 'knowledge_svc': mock.Mock(), 'contact_svc': mock.Mock(), 'planning_svc': mock.Mock(), 'rest_svc': mock.Mock(), 'auth_svc': mock.Mock(), 'file_svc': mock.Mock(), 'learning_svc': mock.Mock(), 'event_svc': mock.Mock(), 'app_svc': mock.Mock()}
+ self.services = app_svc.get_services()
45
tcp_c2 = Contact(services=self.services)
46
event_loop.run_until_complete(tcp_c2.start())
47
assert tcp_c2 is not None
0 commit comments