From 21ba26230ccf2fdcc62f19259de7843f93747d8a Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Fri, 12 Sep 2025 12:19:38 -0600 Subject: [PATCH] test: Attempting to fix dry-run output tests for mac --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index f3f4f81..92d4a73 100644 --- a/src/config.rs +++ b/src/config.rs @@ -116,7 +116,7 @@ pub struct ProviderConfig { #[validate(required)] pub name: Option, #[serde_as(as = "DisplayFromStr")] - #[serde(rename(deserialize = "type"))] + #[serde(rename = "type")] pub provider_type: SupportedProvider, pub password_file: Option, pub git_branch: Option,