diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_another_fake_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_another_fake_api.py index 89c28d0ff7e8..93d3c4088940 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_another_fake_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_another_fake_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = AnotherFakeApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_call_123_test_special_tags(self) -> None: """Test case for call_123_test_special_tags diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_default_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_default_api.py index a0e95f5d9ebd..763eed825053 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_default_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_default_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = DefaultApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_foo_get(self) -> None: """Test case for foo_get diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_api.py index 902c6faa7224..df2f4b6f90ad 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = FakeApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_fake_any_type_request_body(self) -> None: """Test case for fake_any_type_request_body diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_classname_tags123_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_classname_tags123_api.py index db43948df4d5..12a8629dc308 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_classname_tags123_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_fake_classname_tags123_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = FakeClassnameTags123Api() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_test_classname(self) -> None: """Test case for test_classname diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_import_test_datetime_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_import_test_datetime_api.py index c8effe2e53a9..73069b626123 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_import_test_datetime_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_import_test_datetime_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = ImportTestDatetimeApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_import_test_return_datetime(self) -> None: """Test case for import_test_return_datetime diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_pet_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_pet_api.py index 278abd0f0c42..19c138fee2c1 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_pet_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_pet_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = PetApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_add_pet(self) -> None: """Test case for add_pet diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_store_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_store_api.py index 166821bab54e..5cbcd18b75fb 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_store_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_store_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = StoreApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_delete_order(self) -> None: """Test case for delete_order diff --git a/samples/openapi3/client/petstore/python-aiohttp/test/test_user_api.py b/samples/openapi3/client/petstore/python-aiohttp/test/test_user_api.py index ba67311e3932..e091d190dea4 100644 --- a/samples/openapi3/client/petstore/python-aiohttp/test/test_user_api.py +++ b/samples/openapi3/client/petstore/python-aiohttp/test/test_user_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = UserApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_create_user(self) -> None: """Test case for create_user diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_another_fake_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_another_fake_api.py index 4066eae53a86..8a2d152a8eda 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_another_fake_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_another_fake_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = AnotherFakeApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_call_123_test_special_tags(self) -> None: """Test case for call_123_test_special_tags diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_default_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_default_api.py index 1485ea799f79..d95ab045e08e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_default_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_default_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = DefaultApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_foo_get(self) -> None: """Test case for foo_get diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_api.py index dcaf7fb84f15..a18e1b6af127 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = FakeApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_fake_any_type_request_body(self) -> None: """Test case for fake_any_type_request_body diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_classname_tags123_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_classname_tags123_api.py index 0b3fcb004d96..24acad38d43a 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_classname_tags123_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_fake_classname_tags123_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = FakeClassnameTags123Api() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_test_classname(self) -> None: """Test case for test_classname diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_import_test_datetime_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_import_test_datetime_api.py index ba6b500f4eb8..f573836f1717 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_import_test_datetime_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_import_test_datetime_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = ImportTestDatetimeApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_import_test_return_datetime(self) -> None: """Test case for import_test_return_datetime diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_pet_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_pet_api.py index 35c72b2892bc..32b548703a8e 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_pet_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_pet_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = PetApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_add_pet(self) -> None: """Test case for add_pet diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_store_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_store_api.py index 8c2ba9c1e5c8..4f1f78442c9c 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_store_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_store_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = StoreApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_delete_order(self) -> None: """Test case for delete_order diff --git a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_user_api.py b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_user_api.py index 769d7e00f8e0..12c80839d250 100644 --- a/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_user_api.py +++ b/samples/openapi3/client/petstore/python-pydantic-v1-aiohttp/test/test_user_api.py @@ -24,7 +24,7 @@ async def asyncSetUp(self) -> None: self.api = UserApi() async def asyncTearDown(self) -> None: - pass + await self.api.api_client.close() async def test_create_user(self) -> None: """Test case for create_user