diff --git a/src/superannotate/lib/app/interface/sdk_interface.py b/src/superannotate/lib/app/interface/sdk_interface.py index c52bdeb9..86702dd6 100644 --- a/src/superannotate/lib/app/interface/sdk_interface.py +++ b/src/superannotate/lib/app/interface/sdk_interface.py @@ -3278,9 +3278,7 @@ def get_integrations(self): if response.errors: raise AppException(response.errors) integrations = response.data - return BaseSerializer.serialize_iterable( - integrations, ("name", "type", "root") # noqa - ) + return BaseSerializer.serialize_iterable(integrations) def attach_items_from_integrated_storage( self, diff --git a/tests/integration/work_management/test_pause_resume_user_activity.py b/tests/integration/work_management/test_pause_resume_user_activity.py index a706d844..5cbdfeb7 100644 --- a/tests/integration/work_management/test_pause_resume_user_activity.py +++ b/tests/integration/work_management/test_pause_resume_user_activity.py @@ -37,6 +37,7 @@ def test_pause_and_resume_user_activity(self): u for u in users if u["role"] == "Contributor" and u["state"] == "Confirmed" ][0] import pdb + pdb.set_trace() sa.add_contributors_to_project(self.PROJECT_NAME, [scapegoat["email"]], "QA") with self.assertLogs("sa", level="INFO") as cm: