mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
formatting & clippy
This commit is contained in:
parent
adc97a0099
commit
6a47a99114
2 changed files with 13 additions and 5 deletions
|
@ -151,7 +151,7 @@ fn complete(input: &str, state: &mut ReplState, expected_start: &str, expected_e
|
|||
);
|
||||
}
|
||||
_ => {
|
||||
assert!(false, "Unexpected action: {:?}", action);
|
||||
panic!("Unexpected action: {:?}", action);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -190,7 +190,7 @@ fn error(input: &str, state: &mut ReplState, expected_step_result: String) {
|
|||
assert_eq!(expected_step_result, escaped);
|
||||
}
|
||||
_ => {
|
||||
assert!(false, "Unexpected action: {:?}", action);
|
||||
panic!("Unexpected action: {:?}", action);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue