ci: fix bug after config refactor for persisting user prompted local sync changes to config file

This commit is contained in:
2025-09-14 20:42:31 -06:00
parent a2106a06a1
commit 1385aacc62
3 changed files with 153 additions and 5 deletions
+2
View File
@@ -34,6 +34,7 @@ fn test_local_provider_valid() {
git_user_name: None,
git_user_email: Some("test@example.com".to_string()),
git_executable: None,
runtime_provider_name: None,
};
assert!(provider.validate().is_ok());
@@ -48,6 +49,7 @@ fn test_local_provider_invalid_email() {
git_user_name: None,
git_user_email: Some("test".to_string()),
git_executable: None,
runtime_provider_name: None,
};
assert!(config.validate().is_err());