Skip to content

Commit d3b0a55

Browse files
committed
got rid of space
1 parent 0b50c7e commit d3b0a55

File tree

1 file changed

+4
-4
lines changed
  • crates/chat-cli/src/cli/chat/tools/execute

1 file changed

+4
-4
lines changed

crates/chat-cli/src/cli/chat/tools/execute/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ mod tests {
294294
};
295295

296296
#[test]
297-
fn test_requires_acceptance_for_readonly_commands() {
297+
fn test_requires_acceptance_for_readonly_commands() {
298298
let cmds = &[
299299
// Safe commands
300300
("ls ~", false),
@@ -428,10 +428,10 @@ mod tests {
428428
("echo 'test$(data)'", true),
429429
("echo 'test`data`'", true),
430430
("echo 'test' > output.txt", true),
431-
("echo 'test data' && touch main.py", true),
431+
("echo 'test data' && touch main.py", true),
432432
("echo 'test' || rm file", true),
433433
("echo 'test' & background", true),
434-
("echo 'test data'; touch main.py", true),
434+
("echo 'test data'; touch main.py", true),
435435
("echo $HOME", true),
436436
("echo 'test\nrm file'", true),
437437
("echo 'test\rrm file'", true),
@@ -453,7 +453,7 @@ mod tests {
453453
}
454454

455455
#[tokio::test]
456-
async fn test_eval_perm() {
456+
async fn test_eval_perm() {
457457
let tool_name = if cfg!(windows) { "execute_cmd" } else { "execute_bash" };
458458
let mut agent = Agent {
459459
name: "test_agent".to_string(),

0 commit comments

Comments
 (0)