diff --git a/pyseed/apibase.py b/pyseed/apibase.py index e05df09..4d88033 100755 --- a/pyseed/apibase.py +++ b/pyseed/apibase.py @@ -326,7 +326,6 @@ def _construct_payload(self, params): """ if getattr(self, 'use_auth', None) and not getattr(self, 'auth', None): self.auth = self._get_auth() - print(self.auth) return super(UserAuthMixin, self)._construct_payload(params) diff --git a/tests/test_seed_client.py b/tests/test_seed_client.py index ea2eaa7..4a31f78 100644 --- a/tests/test_seed_client.py +++ b/tests/test_seed_client.py @@ -13,7 +13,8 @@ # Local Imports from pyseed.seed_client import SeedClient -ORGANIZATION_ID = 23 +# For CI the test org is 1, but for local testing it may be different +ORGANIZATION_ID = 1 @pytest.mark.integration