diff --git a/src/onboard.rs b/src/onboard.rs index 435fd15..446fb4b 100644 --- a/src/onboard.rs +++ b/src/onboard.rs @@ -1358,7 +1358,10 @@ mod tests { let existing = load_existing_config_from(&dir).unwrap(); assert_eq!(existing.provider.as_deref(), Some("anthropic")); - assert_eq!(existing.model.as_deref(), Some("claude-sonnet-4-5-20250929")); + assert_eq!( + existing.model.as_deref(), + Some("claude-sonnet-4-5-20250929") + ); assert_eq!(existing.real_api_key.as_deref(), Some("sk-ant-existing")); assert_eq!( existing.virtual_api_key.as_deref(), diff --git a/tests/integration.rs b/tests/integration.rs index a25a1b9..984e0e4 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1505,8 +1505,7 @@ async fn test_non_utf8_body_passes_through() { Mock::given(method("POST")) .and(path("/v1/audio/transcriptions")) .respond_with( - ResponseTemplate::new(200) - .set_body_json(serde_json::json!({"text": "hello world"})), + ResponseTemplate::new(200).set_body_json(serde_json::json!({"text": "hello world"})), ) .mount(&mock_server) .await;