From 975646482de3cf99f12ee8c8fbb6458bcb4f00af Mon Sep 17 00:00:00 2001 From: Artem Goncharov Date: Thu, 30 Apr 2026 20:33:33 +0200 Subject: [PATCH] chore: Test the mock suite --- .../tests/mocked/block_storage/v3/volume/response/list.rs | 1 + openstack_types/tests/mocked/compute/v2/server/response/list.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/openstack_types/tests/mocked/block_storage/v3/volume/response/list.rs b/openstack_types/tests/mocked/block_storage/v3/volume/response/list.rs index 46029128a..7f03b5148 100644 --- a/openstack_types/tests/mocked/block_storage/v3/volume/response/list.rs +++ b/openstack_types/tests/mocked/block_storage/v3/volume/response/list.rs @@ -25,6 +25,7 @@ async fn deserialize() -> Result<(), Box> { let _res: Vec = paged(Request::builder().build()?, Pagination::Limit(10)) .query_async(&client) .await?; + // TODO Ok(()) } diff --git a/openstack_types/tests/mocked/compute/v2/server/response/list.rs b/openstack_types/tests/mocked/compute/v2/server/response/list.rs index 4c94844df..4c4cf623b 100644 --- a/openstack_types/tests/mocked/compute/v2/server/response/list.rs +++ b/openstack_types/tests/mocked/compute/v2/server/response/list.rs @@ -36,5 +36,6 @@ async fn deserialize() -> Result<(), Box> { .is_ok() ); } + // TODO Ok(()) }