Apply rustfmt to Atlas Cloud provider

This commit is contained in:
nb213 2026-07-13 21:40:57 +08:00 committed by Valerio
parent a7e77532db
commit a76d931cd9

View file

@ -57,8 +57,8 @@ mod tests {
#[test] #[test]
fn explicit_key_constructs_with_atlas_defaults() { fn explicit_key_constructs_with_atlas_defaults() {
let provider = AtlasCloudProvider::new(Some("test-key".into()), None, None) let provider =
.expect("should construct"); AtlasCloudProvider::new(Some("test-key".into()), None, None).expect("should construct");
assert_eq!(provider.name(), "atlascloud"); assert_eq!(provider.name(), "atlascloud");
assert_eq!(provider.default_model(), "qwen/qwen3.5-flash"); assert_eq!(provider.default_model(), "qwen/qwen3.5-flash");
} }