From 76ec4b481fa931ea36a195ac474812c11babef7b Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Thu, 28 Jul 2022 21:39:22 -0700 Subject: chore: enable mypy check `warn_return_any` Update code so that the `warn_return_any` check passes. --- tests/unit/objects/test_projects.py | 2 +- tests/unit/test_cli.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'tests') 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 -- cgit v1.2.1