some rustfmt updates

This commit is contained in:
Ava Hahn 2023-03-07 21:31:54 -08:00
parent 0c5d14ed8e
commit 5d89c6b684
Signed by untrusted user who does not match committer: affine
GPG key ID: 3A4645B8CF806069
3 changed files with 15 additions and 13 deletions

View file

@ -258,7 +258,8 @@ mod math_lib_tests {
fn test_fi_mod() {
let document = "(def test '' (mod 7.2 2))";
let check1 = "(car test)";
let result1 = "3"; let mut syms = SymTable::new();
let result1 = "3";
let mut syms = SymTable::new();
static_stdlib(&mut syms).unwrap();
dynamic_stdlib(&mut syms).unwrap();
let _ = *eval(&lex(&document.to_string()).unwrap(), &mut syms).unwrap();