fix(tests): resolve last test compiliation issue

This commit is contained in:
perf3ct 2025-07-03 14:09:43 +00:00
parent 7074a8d868
commit dfb56b5d94
1 changed files with 2 additions and 0 deletions

View File

@ -307,6 +307,7 @@ fn test_retry_config_custom_values() {
max_delay_ms: 15000, max_delay_ms: 15000,
backoff_multiplier: 1.5, backoff_multiplier: 1.5,
timeout_seconds: 90, timeout_seconds: 90,
rate_limit_backoff_ms: 10000,
}; };
assert_eq!(custom_retry.max_retries, 5); assert_eq!(custom_retry.max_retries, 5);
@ -314,6 +315,7 @@ fn test_retry_config_custom_values() {
assert_eq!(custom_retry.max_delay_ms, 15000); assert_eq!(custom_retry.max_delay_ms, 15000);
assert_eq!(custom_retry.backoff_multiplier, 1.5); assert_eq!(custom_retry.backoff_multiplier, 1.5);
assert_eq!(custom_retry.timeout_seconds, 90); assert_eq!(custom_retry.timeout_seconds, 90);
assert_eq!(custom_retry.rate_limit_backoff_ms, 10000);
let config = WebDAVConfig { let config = WebDAVConfig {
server_url: "https://cloud.example.com".to_string(), server_url: "https://cloud.example.com".to_string(),