From e9c280324f32521bc42ad1c1ae76a015c30f0e78 Mon Sep 17 00:00:00 2001 From: Chummy Date: Thu, 19 Feb 2026 20:35:41 +0800 Subject: [PATCH] test(config): make schema export test async --- src/config/schema.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/schema.rs b/src/config/schema.rs index 4c7224e..f304466 100644 --- a/src/config/schema.rs +++ b/src/config/schema.rs @@ -3275,7 +3275,7 @@ mod tests { } #[test] - fn config_schema_export_contains_expected_contract_shape() { + async fn config_schema_export_contains_expected_contract_shape() { let schema = schemars::schema_for!(Config); let schema_json = serde_json::to_value(&schema).expect("schema should serialize to json");