typo
All checks were successful
Run Check Script / check (pull_request) Successful in -9s

This commit is contained in:
Taha Hawa 2025-07-03 11:59:46 -04:00
parent 7169fe2d18
commit e7de971c46

View File

@ -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")