diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unit/objects/test_projects.py | 2 | ||||
| -rw-r--r-- | tests/unit/test_cli.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/objects/test_projects.py b/tests/unit/objects/test_projects.py index 6134382..1e5e7d1 100644 --- a/tests/unit/objects/test_projects.py +++ b/tests/unit/objects/test_projects.py @@ -431,7 +431,7 @@ def resp_start_housekeeping(): rsps.add( method=responses.POST, url="http://localhost/api/v4/projects/1/housekeeping", - json="0ee4c430667fb7be8461f310", + json={}, content_type="application/json", status=201, ) diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py index ef33b5d..30693d9 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -24,6 +24,7 @@ from contextlib import redirect_stderr # noqa: H302 import pytest +import gitlab.base from gitlab import cli from gitlab.exceptions import GitlabError @@ -43,7 +44,7 @@ def test_gitlab_resource_to_cls(gitlab_resource, expected_class): def _namespace(): pass - ExpectedClass = type(expected_class, (), {}) + ExpectedClass = type(expected_class, (gitlab.base.RESTObject,), {}) _namespace.__dict__[expected_class] = ExpectedClass assert cli.gitlab_resource_to_cls(gitlab_resource, _namespace) == ExpectedClass |
