From e7de971c4670a248fe8a2216ac40e31687f14341 Mon Sep 17 00:00:00 2001 From: Taha Hawa Date: Thu, 3 Jul 2025 11:59:46 -0400 Subject: [PATCH] typo --- harmony/src/modules/application/features/argo_types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/harmony/src/modules/application/features/argo_types.rs b/harmony/src/modules/application/features/argo_types.rs index a59e9c4..bb69ac7 100644 --- a/harmony/src/modules/application/features/argo_types.rs +++ b/harmony/src/modules/application/features/argo_types.rs @@ -214,11 +214,11 @@ spec: ); yaml_str.push_str( &serde_yaml::to_string(&self.sync_policy) - .expect("couldn't serialize source to yaml string"), + .expect("couldn't serialize sync policy to yaml string"), ); yaml_str.push_str( &serde_yaml::to_string(&self.revision_history_limit) - .expect("couldn't serialize source to yaml string"), + .expect("couldn't serialize revision history to yaml string"), ); serde_yaml::from_str(&yaml_str).expect("Couldn't parse YAML")