mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
style(hermesllm): fix rustfmt formatting in provider id tests
This commit is contained in:
parent
62faa05967
commit
e3f672a8f7
1 changed files with 4 additions and 1 deletions
|
|
@ -367,7 +367,10 @@ mod tests {
|
|||
fn test_vercel_and_openrouter_parsing() {
|
||||
assert_eq!(ProviderId::try_from("vercel"), Ok(ProviderId::Vercel));
|
||||
assert!(ProviderId::try_from("vercel_ai").is_err());
|
||||
assert_eq!(ProviderId::try_from("openrouter"), Ok(ProviderId::OpenRouter));
|
||||
assert_eq!(
|
||||
ProviderId::try_from("openrouter"),
|
||||
Ok(ProviderId::OpenRouter)
|
||||
);
|
||||
assert!(ProviderId::try_from("open_router").is_err());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue