From c40e6fd20144ab66c536b449d8e8a3a0639d146e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Lempart?= Date: Fri, 27 Oct 2023 17:01:25 -0700 Subject: [PATCH] Fix unit test mock helper typing --- .../cloud/rest_contracts/unit_test_mocks/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/cloud/rest_contracts/unit_test_mocks/conftest.py b/tests/integration/cloud/rest_contracts/unit_test_mocks/conftest.py index 5efced19442a..0bff2545fb6f 100644 --- a/tests/integration/cloud/rest_contracts/unit_test_mocks/conftest.py +++ b/tests/integration/cloud/rest_contracts/unit_test_mocks/conftest.py @@ -51,7 +51,7 @@ def _reify_pact_body( def _get_mock_response_from_pact_response_body( status_code: int, - pact_response_body: dict, + pact_response_body: PactBody, ) -> requests.Response: response_body: JsonData = _reify_pact_body( body=pact_response_body,