We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aacad57 commit 0c660cfCopy full SHA for 0c660cf
code-rs/core/src/slash_commands.rs
@@ -359,8 +359,8 @@ mod tests {
359
// Create test agent configurations
360
let agents = vec![
361
AgentConfig {
362
- name: "claude-sonnet-4.5".to_string(),
363
- command: "claude".to_string(),
+ name: "code-gpt-5.2".to_string(),
+ command: "code".to_string(),
364
args: vec![],
365
read_only: false,
366
enabled: true,
@@ -388,7 +388,7 @@ mod tests {
388
let result = handle_slash_command("/plan test task", Some(&agents));
389
assert!(result.is_some());
390
let prompt = result.unwrap();
391
- assert!(prompt.contains("claude-sonnet-4.5"));
+ assert!(prompt.contains("code-gpt-5.2"));
392
assert!(!prompt.contains("test-gemini"));
393
}
394
0 commit comments