chore: clippy + format

This commit is contained in:
Edward Langley
2026-04-04 12:34:50 -07:00
parent 35946afc91
commit c6c8ac2c69
4 changed files with 320 additions and 92 deletions

View File

@ -134,8 +134,7 @@ mod tests {
#[test]
fn parse_quoted_string() {
let cmds =
parse_line(r#"add-formula Measure "Profit = Revenue - Cost""#).unwrap();
let cmds = parse_line(r#"add-formula Measure "Profit = Revenue - Cost""#).unwrap();
assert_eq!(cmds.len(), 1);
assert_eq!(cmds[0].name(), "add-formula");
}